DailyWeather constructor

DailyWeather(
  1. List? time,
  2. List? weathercode,
  3. List? et0_fao_evapotranspiration,
  4. List? windgusts_10m_max,
  5. List? winddirection_10m_dominant,
  6. List? temperature_2m_min,
  7. List? temperature_2m_max,
  8. List? sunset,
  9. List? sunrise,
  10. List? snowfall_sum,
  11. List? showers_sum,
  12. List? shortwave_radiation_sum,
  13. List? rain_sum,
  14. List? precipitation_sum,
  15. List? precipitation_hours,
  16. List? apparent_temperature_min,
  17. List? apparent_temperature_max,
  18. List? windspeed_10m_max,
)

Implementation

DailyWeather(this.time,
    this.weathercode,
    this.et0_fao_evapotranspiration,
    this.windgusts_10m_max,
    this.winddirection_10m_dominant,
    this.temperature_2m_min,
    this.temperature_2m_max,
    this.sunset,
    this.sunrise,
    this.snowfall_sum,
    this.showers_sum,
    this.shortwave_radiation_sum,
    this.rain_sum,
    this.precipitation_sum,
    this.precipitation_hours,
    this.apparent_temperature_min,
    this.apparent_temperature_max,
    this.windspeed_10m_max);