WeatherDescriptionView constructor
const
WeatherDescriptionView({
- Key? key,
- required WeatherData weatherData,
- 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,
});