copyWith method

WebApiModulesWarehouseCheckOutStorageContainerGrid copyWith({
  1. int? storageContainerId,
  2. int? storageContainerItemId,
  3. String? description,
  4. String? pickUpLocation,
  5. String? storageContainerBarcode,
  6. String? auditNote,
  7. String? recordTitle,
  8. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  9. List<FwStandardDataFwCustomValue>? custom,
  10. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  11. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesWarehouseCheckOutStorageContainerGrid 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 WebApiModulesWarehouseCheckOutStorageContainerGrid(
      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);
}