copyWith method
Implementation
WebApiModulesIntegrationsStorefrontLocationModel copyWith({
String? locationId,
String? location,
String? warehouseId,
String? warehouse,
}) {
return WebApiModulesIntegrationsStorefrontLocationModel(
locationId: locationId ?? this.locationId,
location: location ?? this.location,
warehouseId: warehouseId ?? this.warehouseId,
warehouse: warehouse ?? this.warehouse,
);
}