copyWith method
WebApiModulesInventoryPhysicalInventoryPhysicalInventoryExceptions
copyWith({
- String? physicalInventoryId,
- String? scannedCode,
- String? iCode,
- String? description,
- String? exception,
- String? inventoryId,
- String? userName,
- String? date,
- String? time,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesInventoryPhysicalInventoryPhysicalInventoryExceptions copyWith(
{String? physicalInventoryId,
String? scannedCode,
String? iCode,
String? description,
String? exception,
String? inventoryId,
String? userName,
String? date,
String? time,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesInventoryPhysicalInventoryPhysicalInventoryExceptions(
physicalInventoryId: physicalInventoryId ?? this.physicalInventoryId,
scannedCode: scannedCode ?? this.scannedCode,
iCode: iCode ?? this.iCode,
description: description ?? this.description,
exception: exception ?? this.exception,
inventoryId: inventoryId ?? this.inventoryId,
userName: userName ?? this.userName,
date: date ?? this.date,
time: time ?? this.time,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}