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