copyWithWrapped method
Implementation
WebApiModulesAgentOrderItemCancelManualSortRequest copyWithWrapped({
Wrapped<String?>? orderId,
Wrapped<String?>? recType,
}) {
return WebApiModulesAgentOrderItemCancelManualSortRequest(
orderId: (orderId != null ? orderId.value : this.orderId),
recType: (recType != null ? recType.value : this.recType),
);
}