copyWithWrapped method
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,
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));
}