copyWith method
WebApiModulesInventoryPhysicalInventoryPhysicalInventoryCountSerial
copyWith({
- String? physicalInventoryId,
- String? inventoryId,
- String? inventoryType,
- String? category,
- String? iCode,
- String? description,
- String? aisleLocation,
- String? shelfLocation,
- String? categoryId,
- double? categoryOrderBy,
- int? inventoryTypeOrderBy,
- String? inventoryTypeId,
- String? unitId,
- String? unit,
- String? currentSpaceId,
- String? currentSpace,
- String? consignorId,
- String? consignor,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesInventoryPhysicalInventoryPhysicalInventoryCountSerial copyWith(
{String? physicalInventoryId,
String? inventoryId,
String? inventoryType,
String? category,
String? iCode,
String? description,
String? aisleLocation,
String? shelfLocation,
String? categoryId,
double? categoryOrderBy,
int? inventoryTypeOrderBy,
String? inventoryTypeId,
String? unitId,
String? unit,
String? currentSpaceId,
String? currentSpace,
String? consignorId,
String? consignor,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesInventoryPhysicalInventoryPhysicalInventoryCountSerial(
physicalInventoryId: physicalInventoryId ?? this.physicalInventoryId,
inventoryId: inventoryId ?? this.inventoryId,
inventoryType: inventoryType ?? this.inventoryType,
category: category ?? this.category,
iCode: iCode ?? this.iCode,
description: description ?? this.description,
aisleLocation: aisleLocation ?? this.aisleLocation,
shelfLocation: shelfLocation ?? this.shelfLocation,
categoryId: categoryId ?? this.categoryId,
categoryOrderBy: categoryOrderBy ?? this.categoryOrderBy,
inventoryTypeOrderBy: inventoryTypeOrderBy ?? this.inventoryTypeOrderBy,
inventoryTypeId: inventoryTypeId ?? this.inventoryTypeId,
unitId: unitId ?? this.unitId,
unit: unit ?? this.unit,
currentSpaceId: currentSpaceId ?? this.currentSpaceId,
currentSpace: currentSpace ?? this.currentSpace,
consignorId: consignorId ?? this.consignorId,
consignor: consignor ?? this.consignor,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}