LocationView constructor

const LocationView({
  1. Key? key,
  2. required WeatherData weatherData,
  3. Color? color,
})

Implementation

const LocationView({
  super.key,
  required this.weatherData,
  this.color,
});