copyWith method
Implementation
WebApiModulesAgentOrderGetCustomRatesRequest copyWith({
String? orderId,
String? inventoryId,
String? recType,
}) {
return WebApiModulesAgentOrderGetCustomRatesRequest(
orderId: orderId ?? this.orderId,
inventoryId: inventoryId ?? this.inventoryId,
recType: recType ?? this.recType,
);
}