copyWith method
WebApiModulesHomeControlsManifestManifest
copyWith({
- String? manifestId,
- String? manifestNumber,
- String? manifestDate,
- String? contractType,
- String? departmentId,
- String? department,
- String? locationId,
- String? location,
- String? locationCode,
- String? nameFirstMiddleLast,
- String? transferId,
- String? transferNumber,
- String? transferDescription,
- bool? hasVoid,
- bool? rental,
- bool? sales,
- bool? exchange,
- String? manifestTime,
- String? warehouseId,
- String? warehouse,
- String? warehouseCode,
- bool? fixedAssetTransferOwnership,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesHomeControlsManifestManifest copyWith(
{String? manifestId,
String? manifestNumber,
String? manifestDate,
String? contractType,
String? departmentId,
String? department,
String? locationId,
String? location,
String? locationCode,
String? nameFirstMiddleLast,
String? transferId,
String? transferNumber,
String? transferDescription,
bool? hasVoid,
bool? rental,
bool? sales,
bool? exchange,
String? manifestTime,
String? warehouseId,
String? warehouse,
String? warehouseCode,
bool? fixedAssetTransferOwnership,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesHomeControlsManifestManifest(
manifestId: manifestId ?? this.manifestId,
manifestNumber: manifestNumber ?? this.manifestNumber,
manifestDate: manifestDate ?? this.manifestDate,
contractType: contractType ?? this.contractType,
departmentId: departmentId ?? this.departmentId,
department: department ?? this.department,
locationId: locationId ?? this.locationId,
location: location ?? this.location,
locationCode: locationCode ?? this.locationCode,
nameFirstMiddleLast: nameFirstMiddleLast ?? this.nameFirstMiddleLast,
transferId: transferId ?? this.transferId,
transferNumber: transferNumber ?? this.transferNumber,
transferDescription: transferDescription ?? this.transferDescription,
hasVoid: hasVoid ?? this.hasVoid,
rental: rental ?? this.rental,
sales: sales ?? this.sales,
exchange: exchange ?? this.exchange,
manifestTime: manifestTime ?? this.manifestTime,
warehouseId: warehouseId ?? this.warehouseId,
warehouse: warehouse ?? this.warehouse,
warehouseCode: warehouseCode ?? this.warehouseCode,
fixedAssetTransferOwnership:
fixedAssetTransferOwnership ?? this.fixedAssetTransferOwnership,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}