copyWith method
WebApiModulesInventoryStorageContainerStorageContainerItem
copyWith({
- int? storageContainerItemId,
- int? storageContainerId,
- String? storageContainerBarcode,
- String? aisleShelf,
- String? orderNumber,
- String? orderDescription,
- String? deal,
- String? pickupLocation,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesInventoryStorageContainerStorageContainerItem copyWith(
{int? storageContainerItemId,
int? storageContainerId,
String? storageContainerBarcode,
String? aisleShelf,
String? orderNumber,
String? orderDescription,
String? deal,
String? pickupLocation,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesInventoryStorageContainerStorageContainerItem(
storageContainerItemId:
storageContainerItemId ?? this.storageContainerItemId,
storageContainerId: storageContainerId ?? this.storageContainerId,
storageContainerBarcode:
storageContainerBarcode ?? this.storageContainerBarcode,
aisleShelf: aisleShelf ?? this.aisleShelf,
orderNumber: orderNumber ?? this.orderNumber,
orderDescription: orderDescription ?? this.orderDescription,
deal: deal ?? this.deal,
pickupLocation: pickupLocation ?? this.pickupLocation,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}