WeatherDescriptionView constructor

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

Creates a WeatherDescriptionView widget.

The weatherData parameter must not be null. The color parameter is optional.

Implementation

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