OneCallDailyWeather constructor

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

Implementation

OneCallDailyWeather({
  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.dewPoint,
  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,
});