copyWith method
WebApiModulesHomeControlsRepairReleaseRepairRelease
copyWith({
- String? repairReleaseId,
- String? repairId,
- String? releaseDate,
- String? usersId,
- String? releasedBy,
- double? releaseQuantity,
- bool? staging,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesHomeControlsRepairReleaseRepairRelease copyWith(
{String? repairReleaseId,
String? repairId,
String? releaseDate,
String? usersId,
String? releasedBy,
double? releaseQuantity,
bool? staging,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesHomeControlsRepairReleaseRepairRelease(
repairReleaseId: repairReleaseId ?? this.repairReleaseId,
repairId: repairId ?? this.repairId,
releaseDate: releaseDate ?? this.releaseDate,
usersId: usersId ?? this.usersId,
releasedBy: releasedBy ?? this.releasedBy,
releaseQuantity: releaseQuantity ?? this.releaseQuantity,
staging: staging ?? this.staging,
dateStamp: dateStamp ?? this.dateStamp,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}