Weather constructor
Weather({
- required double? latitude,
- required double? longitude,
- HourlyWeather? hourly,
- CurrentWeather? current_weather,
- DailyWeather? daily,
- DailyUnits? daily_units,
- double? elevation,
- double? generationtime_ms,
- HourlyUnits? hourly_units,
- String? timezone,
- String? timezone_abbreviation,
- int? utc_offset_seconds,
Implementation
Weather({required this.latitude,
required this.longitude,
this.hourly,
this.current_weather,
this.daily,
this.daily_units,
this.elevation,
this.generationtime_ms,
this.hourly_units,
this.timezone,
this.timezone_abbreviation,
this.utc_offset_seconds,
});