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