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