Day constructor

Day({
  1. double? maxtempC,
  2. double? maxtempF,
  3. double? mintempC,
  4. double? mintempF,
  5. double? avgtempC,
  6. double? avgtempF,
  7. double? maxwindMph,
  8. double? maxwindKph,
  9. double? totalprecipMm,
  10. double? totalprecipIn,
  11. double? avgvisKm,
  12. double? avgvisMiles,
  13. double? avghumidity,
  14. int? dailyWillItRain,
  15. int? dailyChanceOfRain,
  16. int? dailyWillItSnow,
  17. int? dailyChanceOfSnow,
  18. Condition? condition,
  19. double? uv,
})

Implementation

Day({
  this.maxtempC,
  this.maxtempF,
  this.mintempC,
  this.mintempF,
  this.avgtempC,
  this.avgtempF,
  this.maxwindMph,
  this.maxwindKph,
  this.totalprecipMm,
  this.totalprecipIn,
  this.avgvisKm,
  this.avgvisMiles,
  this.avghumidity,
  this.dailyWillItRain,
  this.dailyChanceOfRain,
  this.dailyWillItSnow,
  this.dailyChanceOfSnow,
  this.condition,
  this.uv,
});