copyWith method
WebApiModulesWarehouseOrderStatusStorageContainerGrid
copyWith({
- int? storageContainerId,
- int? storageContainerItemId,
- String? description,
- String? pickUpLocation,
- String? storageContainerBarcode,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesWarehouseOrderStatusStorageContainerGrid copyWith(
{int? storageContainerId,
int? storageContainerItemId,
String? description,
String? pickUpLocation,
String? storageContainerBarcode,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesWarehouseOrderStatusStorageContainerGrid(
storageContainerId: storageContainerId ?? this.storageContainerId,
storageContainerItemId:
storageContainerItemId ?? this.storageContainerItemId,
description: description ?? this.description,
pickUpLocation: pickUpLocation ?? this.pickUpLocation,
storageContainerBarcode:
storageContainerBarcode ?? this.storageContainerBarcode,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}