copyWithWrapped method

WebApiModulesWarehouseOrderStatusOrderStatusHeaderResponse copyWithWrapped({
  1. Wrapped<String?>? description,
  2. Wrapped<String?>? status,
  3. Wrapped<String?>? deal,
  4. Wrapped<String?>? dealId,
  5. Wrapped<String?>? warehouse,
  6. Wrapped<String?>? fromWarehouse,
  7. Wrapped<String?>? pickDate,
  8. Wrapped<String?>? pickTime,
  9. Wrapped<String?>? estimatedStartDate,
  10. Wrapped<String?>? estimatedStartTime,
  11. Wrapped<String?>? estimatedStopDate,
  12. Wrapped<String?>? estimatedStopTime,
  13. Wrapped<String?>? shipDate,
  14. Wrapped<String?>? shipTime,
  15. Wrapped<String?>? requiredDate,
  16. Wrapped<String?>? requiredTime,
  17. Wrapped<String?>? vendor,
  18. Wrapped<String?>? vendorId,
  19. 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));
}