DailyWeather constructor

DailyWeather(
  1. int dt,
  2. int sunrise,
  3. int sunset,
  4. DailyTemperature temperature,
  5. DailyFeelsLike feelsLike,
  6. int pressure,
  7. int humidity,
  8. double dewPoint,
  9. Wind wind,
  10. List<Details> details,
  11. num clouds,
  12. num pop,
  13. num? rain,
  14. num? snow,
  15. num uvi,
)

Creates a DailyWeather object

Implementation

DailyWeather(
  this.dt,
  this.sunrise,
  this.sunset,
  this.temperature,
  this.feelsLike,
  this.pressure,
  this.humidity,
  this.dewPoint,
  this.wind,
  this.details,
  this.clouds,
  this.pop,
  this.rain,
  this.snow,
  this.uvi,
);