copyWith method

WebApiModulesAgentOrderQuoteToOrderRequest copyWith({
  1. String? quoteId,
  2. String? locationId,
  3. String? warehouseId,
})

Implementation

WebApiModulesAgentOrderQuoteToOrderRequest copyWith({
  String? quoteId,
  String? locationId,
  String? warehouseId,
}) {
  return WebApiModulesAgentOrderQuoteToOrderRequest(
    quoteId: quoteId ?? this.quoteId,
    locationId: locationId ?? this.locationId,
    warehouseId: warehouseId ?? this.warehouseId,
  );
}