copyWithWrapped method
WebApiModulesWarehouseOrderStatusOrderStatusHeaderResponse
copyWithWrapped({
- Wrapped<
String?> ? description, - Wrapped<
String?> ? status, - Wrapped<
String?> ? deal, - Wrapped<
String?> ? dealId, - Wrapped<
String?> ? warehouse, - Wrapped<
String?> ? fromWarehouse, - Wrapped<
String?> ? pickDate, - Wrapped<
String?> ? pickTime, - Wrapped<
String?> ? estimatedStartDate, - Wrapped<
String?> ? estimatedStartTime, - Wrapped<
String?> ? estimatedStopDate, - Wrapped<
String?> ? estimatedStopTime, - Wrapped<
String?> ? shipDate, - Wrapped<
String?> ? shipTime, - Wrapped<
String?> ? requiredDate, - Wrapped<
String?> ? requiredTime, - Wrapped<
String?> ? vendor, - Wrapped<
String?> ? vendorId, - Wrapped<
String?> ? containerStatus,
Implementation
WebApiModulesWarehouseOrderStatusOrderStatusHeaderResponse copyWithWrapped(
{Wrapped<String?>? description,
Wrapped<String?>? status,
Wrapped<String?>? deal,
Wrapped<String?>? dealId,
Wrapped<String?>? warehouse,
Wrapped<String?>? fromWarehouse,
Wrapped<String?>? pickDate,
Wrapped<String?>? pickTime,
Wrapped<String?>? estimatedStartDate,
Wrapped<String?>? estimatedStartTime,
Wrapped<String?>? estimatedStopDate,
Wrapped<String?>? estimatedStopTime,
Wrapped<String?>? shipDate,
Wrapped<String?>? shipTime,
Wrapped<String?>? requiredDate,
Wrapped<String?>? requiredTime,
Wrapped<String?>? vendor,
Wrapped<String?>? vendorId,
Wrapped<String?>? containerStatus}) {
return WebApiModulesWarehouseOrderStatusOrderStatusHeaderResponse(
description:
(description != null ? description.value : this.description),
status: (status != null ? status.value : this.status),
deal: (deal != null ? deal.value : this.deal),
dealId: (dealId != null ? dealId.value : this.dealId),
warehouse: (warehouse != null ? warehouse.value : this.warehouse),
fromWarehouse:
(fromWarehouse != null ? fromWarehouse.value : this.fromWarehouse),
pickDate: (pickDate != null ? pickDate.value : this.pickDate),
pickTime: (pickTime != null ? pickTime.value : this.pickTime),
estimatedStartDate: (estimatedStartDate != null
? estimatedStartDate.value
: this.estimatedStartDate),
estimatedStartTime: (estimatedStartTime != null
? estimatedStartTime.value
: this.estimatedStartTime),
estimatedStopDate: (estimatedStopDate != null
? estimatedStopDate.value
: this.estimatedStopDate),
estimatedStopTime: (estimatedStopTime != null
? estimatedStopTime.value
: this.estimatedStopTime),
shipDate: (shipDate != null ? shipDate.value : this.shipDate),
shipTime: (shipTime != null ? shipTime.value : this.shipTime),
requiredDate:
(requiredDate != null ? requiredDate.value : this.requiredDate),
requiredTime:
(requiredTime != null ? requiredTime.value : this.requiredTime),
vendor: (vendor != null ? vendor.value : this.vendor),
vendorId: (vendorId != null ? vendorId.value : this.vendorId),
containerStatus: (containerStatus != null
? containerStatus.value
: this.containerStatus));
}