copyWithWrapped method

WebApiModulesHomeControlsContainerWarehouseContainerWarehouse copyWithWrapped({
  1. Wrapped<String?>? inventoryId,
  2. Wrapped<String?>? warehouseId,
  3. Wrapped<String?>? warehouseCode,
  4. Wrapped<String?>? warehouse,
  5. Wrapped<double?>? dailyRate,
  6. Wrapped<double?>? weeklyRate,
  7. Wrapped<double?>? monthlyRate,
  8. Wrapped<int?>? quantity,
  9. Wrapped<int?>? quantityReady,
  10. Wrapped<int?>? quantityIncomplete,
  11. Wrapped<int?>? warehouseOrderBy,
  12. Wrapped<String?>? auditNote,
  13. Wrapped<String?>? recordTitle,
  14. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  15. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  16. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
})

Implementation

WebApiModulesHomeControlsContainerWarehouseContainerWarehouse copyWithWrapped(
    {Wrapped<String?>? inventoryId,
    Wrapped<String?>? warehouseId,
    Wrapped<String?>? warehouseCode,
    Wrapped<String?>? warehouse,
    Wrapped<double?>? dailyRate,
    Wrapped<double?>? weeklyRate,
    Wrapped<double?>? monthlyRate,
    Wrapped<int?>? quantity,
    Wrapped<int?>? quantityReady,
    Wrapped<int?>? quantityIncomplete,
    Wrapped<int?>? warehouseOrderBy,
    Wrapped<String?>? auditNote,
    Wrapped<String?>? recordTitle,
    Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
        fields,
    Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
    Wrapped<List<FwStandardDataFwDefaultAttribute>?>?
        defaultFieldAttributes}) {
  return WebApiModulesHomeControlsContainerWarehouseContainerWarehouse(
      inventoryId:
          (inventoryId != null ? inventoryId.value : this.inventoryId),
      warehouseId:
          (warehouseId != null ? warehouseId.value : this.warehouseId),
      warehouseCode:
          (warehouseCode != null ? warehouseCode.value : this.warehouseCode),
      warehouse: (warehouse != null ? warehouse.value : this.warehouse),
      dailyRate: (dailyRate != null ? dailyRate.value : this.dailyRate),
      weeklyRate: (weeklyRate != null ? weeklyRate.value : this.weeklyRate),
      monthlyRate:
          (monthlyRate != null ? monthlyRate.value : this.monthlyRate),
      quantity: (quantity != null ? quantity.value : this.quantity),
      quantityReady:
          (quantityReady != null ? quantityReady.value : this.quantityReady),
      quantityIncomplete: (quantityIncomplete != null
          ? quantityIncomplete.value
          : this.quantityIncomplete),
      warehouseOrderBy: (warehouseOrderBy != null
          ? warehouseOrderBy.value
          : this.warehouseOrderBy),
      auditNote: (auditNote != null ? auditNote.value : this.auditNote),
      recordTitle:
          (recordTitle != null ? recordTitle.value : this.recordTitle),
      fields: (fields != null ? fields.value : this.fields),
      custom: (custom != null ? custom.value : this.custom),
      defaultFieldAttributes: (defaultFieldAttributes != null
          ? defaultFieldAttributes.value
          : this.defaultFieldAttributes));
}