OneCallDailyWeather constructor

OneCallDailyWeather({
  1. int? weatherID,
  2. String? iconID,
  3. WeatherType? weatherType,
  4. String? mainDescription,
  5. String? secondaryDescription,
  6. num? tempMorning,
  7. num? tempDay,
  8. num? tempEvening,
  9. num? tempNight,
  10. num? tempMin,
  11. num? tempMax,
  12. num? feelsLikeTempMorning,
  13. num? feelsLikeTempDay,
  14. num? feelsLikeTempEvening,
  15. num? feelsLikeTempNight,
  16. num? dewPointTemp,
  17. num? humidity,
  18. num? cloudiness,
  19. num? uvi,
  20. num? pressure,
  21. num? windSpeed,
  22. int? windDegree,
  23. num? windGustSpeed,
  24. int? precipitationChance,
  25. num? rainAmount,
  26. num? snowAmount,
  27. DateTime? sunrise,
  28. DateTime? sunset,
  29. DateTime? moonrise,
  30. DateTime? moonset,
  31. double? moonPhase,
  32. DateTime? timeStamp,
})

Implementation

OneCallDailyWeather({
  this.weatherID,
  this.iconID,
  this.weatherType,
  this.mainDescription,
  this.secondaryDescription,
  this.tempMorning,
  this.tempDay,
  this.tempEvening,
  this.tempNight,
  this.tempMin,
  this.tempMax,
  this.feelsLikeTempMorning,
  this.feelsLikeTempDay,
  this.feelsLikeTempEvening,
  this.feelsLikeTempNight,
  this.dewPointTemp,
  this.humidity,
  this.cloudiness,
  this.uvi,
  this.pressure,
  this.windSpeed,
  this.windDegree,
  this.windGustSpeed,
  this.precipitationChance,
  this.rainAmount,
  this.snowAmount,
  this.sunrise,
  this.sunset,
  this.moonrise,
  this.moonset,
  this.moonPhase,
  this.timeStamp,
});