copyWith method
Implementation
WebApiModulesAgentOrderModifyPoWorksheetSessionRequest copyWith({
String? orderId,
String? purchaseOrderId,
String? recType,
}) {
return WebApiModulesAgentOrderModifyPoWorksheetSessionRequest(
orderId: orderId ?? this.orderId,
purchaseOrderId: purchaseOrderId ?? this.purchaseOrderId,
recType: recType ?? this.recType,
);
}