copyWithWrapped method
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< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
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,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
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),
translation:
(translation != null ? translation.value : this.translation));
}