copyWithWrapped method
Implementation
WebApiModulesAgentOrderQuoteToOrderRequest copyWithWrapped({
Wrapped<String>? quoteId,
Wrapped<String>? locationId,
Wrapped<String>? warehouseId,
}) {
return WebApiModulesAgentOrderQuoteToOrderRequest(
quoteId: (quoteId != null ? quoteId.value : this.quoteId),
locationId: (locationId != null ? locationId.value : this.locationId),
warehouseId: (warehouseId != null ? warehouseId.value : this.warehouseId),
);
}