copyWith method
WebApiModulesUtilitiesOrderLocationScheduleOrderLocationScheduleEvent
copyWith({
- String? start,
- String? end,
- String? text,
- String? backColor,
- String? barColor,
- String? textColor,
- String? resource,
- String? orderId,
- String? orderNumber,
- String? orderType,
- String? orderStatus,
- String? orderDescription,
- String? orderLocation,
- String? deal,
- String? poNumber,
- String? id,
- String? orderBy,
Implementation
WebApiModulesUtilitiesOrderLocationScheduleOrderLocationScheduleEvent
copyWith(
{String? start,
String? end,
String? text,
String? backColor,
String? barColor,
String? textColor,
String? resource,
String? orderId,
String? orderNumber,
String? orderType,
String? orderStatus,
String? orderDescription,
String? orderLocation,
String? deal,
String? poNumber,
String? id,
String? orderBy}) {
return WebApiModulesUtilitiesOrderLocationScheduleOrderLocationScheduleEvent(
start: start ?? this.start,
end: end ?? this.end,
text: text ?? this.text,
backColor: backColor ?? this.backColor,
barColor: barColor ?? this.barColor,
textColor: textColor ?? this.textColor,
resource: resource ?? this.resource,
orderId: orderId ?? this.orderId,
orderNumber: orderNumber ?? this.orderNumber,
orderType: orderType ?? this.orderType,
orderStatus: orderStatus ?? this.orderStatus,
orderDescription: orderDescription ?? this.orderDescription,
orderLocation: orderLocation ?? this.orderLocation,
deal: deal ?? this.deal,
poNumber: poNumber ?? this.poNumber,
id: id ?? this.id,
orderBy: orderBy ?? this.orderBy);
}