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