copyWithWrapped method

WebApiModulesUtilitiesOrderLocationScheduleOrderLocationScheduleEvent copyWithWrapped({
  1. Wrapped<String?>? start,
  2. Wrapped<String?>? end,
  3. Wrapped<String?>? text,
  4. Wrapped<String?>? backColor,
  5. Wrapped<String?>? barColor,
  6. Wrapped<String?>? textColor,
  7. Wrapped<String?>? resource,
  8. Wrapped<String?>? orderId,
  9. Wrapped<String?>? orderNumber,
  10. Wrapped<String?>? orderType,
  11. Wrapped<String?>? orderStatus,
  12. Wrapped<String?>? orderDescription,
  13. Wrapped<String?>? orderLocation,
  14. Wrapped<String?>? deal,
  15. Wrapped<String?>? poNumber,
  16. Wrapped<String?>? id,
  17. Wrapped<String?>? orderBy,
})

Implementation

WebApiModulesUtilitiesOrderLocationScheduleOrderLocationScheduleEvent
copyWithWrapped({
  Wrapped<String?>? start,
  Wrapped<String?>? end,
  Wrapped<String?>? text,
  Wrapped<String?>? backColor,
  Wrapped<String?>? barColor,
  Wrapped<String?>? textColor,
  Wrapped<String?>? resource,
  Wrapped<String?>? orderId,
  Wrapped<String?>? orderNumber,
  Wrapped<String?>? orderType,
  Wrapped<String?>? orderStatus,
  Wrapped<String?>? orderDescription,
  Wrapped<String?>? orderLocation,
  Wrapped<String?>? deal,
  Wrapped<String?>? poNumber,
  Wrapped<String?>? id,
  Wrapped<String?>? orderBy,
}) {
  return WebApiModulesUtilitiesOrderLocationScheduleOrderLocationScheduleEvent(
    start: (start != null ? start.value : this.start),
    end: (end != null ? end.value : this.end),
    text: (text != null ? text.value : this.text),
    backColor: (backColor != null ? backColor.value : this.backColor),
    barColor: (barColor != null ? barColor.value : this.barColor),
    textColor: (textColor != null ? textColor.value : this.textColor),
    resource: (resource != null ? resource.value : this.resource),
    orderId: (orderId != null ? orderId.value : this.orderId),
    orderNumber: (orderNumber != null ? orderNumber.value : this.orderNumber),
    orderType: (orderType != null ? orderType.value : this.orderType),
    orderStatus: (orderStatus != null ? orderStatus.value : this.orderStatus),
    orderDescription: (orderDescription != null
        ? orderDescription.value
        : this.orderDescription),
    orderLocation: (orderLocation != null
        ? orderLocation.value
        : this.orderLocation),
    deal: (deal != null ? deal.value : this.deal),
    poNumber: (poNumber != null ? poNumber.value : this.poNumber),
    id: (id != null ? id.value : this.id),
    orderBy: (orderBy != null ? orderBy.value : this.orderBy),
  );
}