copyWith method

WebApiModulesAgentOrderModifyPoWorksheetSessionRequest copyWith({
  1. String? orderId,
  2. String? purchaseOrderId,
  3. String? recType,
})

Implementation

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