copyWith method

WebApiModulesWarehouseCheckOutStorageContainerItemsGrid copyWith({
  1. int? storageContainerItemId,
  2. String? iCode,
  3. String? stagedBarcode,
  4. int? quantityOrdered,
  5. int? staged,
  6. String? orderBy,
  7. String? auditNote,
  8. String? recordTitle,
  9. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  10. List<FwStandardDataFwCustomValue>? custom,
  11. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  12. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesWarehouseCheckOutStorageContainerItemsGrid copyWith(
    {int? storageContainerItemId,
    String? iCode,
    String? stagedBarcode,
    int? quantityOrdered,
    int? staged,
    String? orderBy,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesWarehouseCheckOutStorageContainerItemsGrid(
      storageContainerItemId:
          storageContainerItemId ?? this.storageContainerItemId,
      iCode: iCode ?? this.iCode,
      stagedBarcode: stagedBarcode ?? this.stagedBarcode,
      quantityOrdered: quantityOrdered ?? this.quantityOrdered,
      staged: staged ?? this.staged,
      orderBy: orderBy ?? this.orderBy,
      auditNote: auditNote ?? this.auditNote,
      recordTitle: recordTitle ?? this.recordTitle,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes,
      translation: translation ?? this.translation);
}