copyWith method

WebApiModulesAgentOrderGetCustomRatesRequest copyWith({
  1. String? orderId,
  2. String? inventoryId,
  3. String? recType,
})

Implementation

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