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