copyWith method
WebApiModulesHomeControlsInventoryContainerItemInventoryContainerItem
copyWith({
- String? containerItemId,
- String? packageId,
- String? containerId,
- int? rowNumber,
- String? iCode,
- String? description,
- String? trackedBy,
- double? quantityOrdered,
- double? price,
- String? notes,
- String? inventoryId,
- String? recType,
- int? ident,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesHomeControlsInventoryContainerItemInventoryContainerItem
copyWith(
{String? containerItemId,
String? packageId,
String? containerId,
int? rowNumber,
String? iCode,
String? description,
String? trackedBy,
double? quantityOrdered,
double? price,
String? notes,
String? inventoryId,
String? recType,
int? ident,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesHomeControlsInventoryContainerItemInventoryContainerItem(
containerItemId: containerItemId ?? this.containerItemId,
packageId: packageId ?? this.packageId,
containerId: containerId ?? this.containerId,
rowNumber: rowNumber ?? this.rowNumber,
iCode: iCode ?? this.iCode,
description: description ?? this.description,
trackedBy: trackedBy ?? this.trackedBy,
quantityOrdered: quantityOrdered ?? this.quantityOrdered,
price: price ?? this.price,
notes: notes ?? this.notes,
inventoryId: inventoryId ?? this.inventoryId,
recType: recType ?? this.recType,
ident: ident ?? this.ident,
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);
}