copyWith method

Implementation

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