copyWith method

MaintenanceNoteUpsertV3Body copyWith({
  1. String? contents,
})

Implementation

MaintenanceNoteUpsertV3Body copyWith({String? contents}) {
  return MaintenanceNoteUpsertV3Body(contents: contents ?? this.contents);
}