copyWith method
Implementation
WebApiApplyBottomLineDaysPerWeekRequest copyWith(
{String? orderId,
String? purchaseOrderId,
String? invoiceId,
String? recType,
bool? subs,
double? daysPerWeek}) {
return WebApiApplyBottomLineDaysPerWeekRequest(
orderId: orderId ?? this.orderId,
purchaseOrderId: purchaseOrderId ?? this.purchaseOrderId,
invoiceId: invoiceId ?? this.invoiceId,
recType: recType ?? this.recType,
subs: subs ?? this.subs,
daysPerWeek: daysPerWeek ?? this.daysPerWeek);
}