copyWith method

WebApiModulesInventoryStorageContainerStorageContainerItem copyWith({
  1. int? storageContainerItemId,
  2. int? storageContainerId,
  3. String? storageContainerBarcode,
  4. String? aisleShelf,
  5. String? orderNumber,
  6. String? orderDescription,
  7. String? deal,
  8. String? pickupLocation,
  9. String? auditNote,
  10. String? recordTitle,
  11. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  12. List<FwStandardDataFwCustomValue>? custom,
  13. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  14. 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);
}