copyWithWrapped method

WebApiModulesAgentOrderQuoteToOrderRequest copyWithWrapped({
  1. Wrapped<String>? quoteId,
  2. Wrapped<String>? locationId,
  3. Wrapped<String>? warehouseId,
})

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),
  );
}