WeatherData constructor
//////////// ////////////
Implementation
// II.B - Constructor
///////////////
const WeatherData({
required this.precipitation,
required this.temperature,
required this.humidity,
required this.description,
required this.iconCode,
required this.visibility,
required this.windSpeed,
required this.windDirection,
required this.pressure,
required this.uvIndex,
});