copyWithWrapped method

WebApiLogicAppFuncSessionWarehouse copyWithWrapped({
  1. Wrapped<String?>? warehouseid,
  2. Wrapped<String?>? warehouse,
  3. Wrapped<String?>? warehousecode,
  4. Wrapped<bool?>? promptforcheckoutexceptions,
  5. Wrapped<bool?>? promptforcheckinexceptions,
  6. Wrapped<bool?>? storagecontainerstagingenable,
  7. Wrapped<bool?>? storagecontainerrescanrequired,
  8. Wrapped<bool?>? quikreceiptenable,
  9. Wrapped<int?>? transferavailabilitydays,
  10. Wrapped<String?>? regionid,
  11. Wrapped<String?>? region,
  12. Wrapped<String?>? regionwarehouseids,
  13. Wrapped<String?>? regionwarehouses,
  14. Wrapped<String?>? internalorderdealid,
})

Implementation

WebApiLogicAppFuncSessionWarehouse copyWithWrapped(
    {Wrapped<String?>? warehouseid,
    Wrapped<String?>? warehouse,
    Wrapped<String?>? warehousecode,
    Wrapped<bool?>? promptforcheckoutexceptions,
    Wrapped<bool?>? promptforcheckinexceptions,
    Wrapped<bool?>? storagecontainerstagingenable,
    Wrapped<bool?>? storagecontainerrescanrequired,
    Wrapped<bool?>? quikreceiptenable,
    Wrapped<int?>? transferavailabilitydays,
    Wrapped<String?>? regionid,
    Wrapped<String?>? region,
    Wrapped<String?>? regionwarehouseids,
    Wrapped<String?>? regionwarehouses,
    Wrapped<String?>? internalorderdealid}) {
  return WebApiLogicAppFuncSessionWarehouse(
      warehouseid:
          (warehouseid != null ? warehouseid.value : this.warehouseid),
      warehouse: (warehouse != null ? warehouse.value : this.warehouse),
      warehousecode:
          (warehousecode != null ? warehousecode.value : this.warehousecode),
      promptforcheckoutexceptions: (promptforcheckoutexceptions != null
          ? promptforcheckoutexceptions.value
          : this.promptforcheckoutexceptions),
      promptforcheckinexceptions: (promptforcheckinexceptions != null
          ? promptforcheckinexceptions.value
          : this.promptforcheckinexceptions),
      storagecontainerstagingenable: (storagecontainerstagingenable != null
          ? storagecontainerstagingenable.value
          : this.storagecontainerstagingenable),
      storagecontainerrescanrequired: (storagecontainerrescanrequired != null
          ? storagecontainerrescanrequired.value
          : this.storagecontainerrescanrequired),
      quikreceiptenable: (quikreceiptenable != null
          ? quikreceiptenable.value
          : this.quikreceiptenable),
      transferavailabilitydays: (transferavailabilitydays != null
          ? transferavailabilitydays.value
          : this.transferavailabilitydays),
      regionid: (regionid != null ? regionid.value : this.regionid),
      region: (region != null ? region.value : this.region),
      regionwarehouseids: (regionwarehouseids != null
          ? regionwarehouseids.value
          : this.regionwarehouseids),
      regionwarehouses: (regionwarehouses != null
          ? regionwarehouses.value
          : this.regionwarehouses),
      internalorderdealid: (internalorderdealid != null
          ? internalorderdealid.value
          : this.internalorderdealid));
}