Hour constructor

Hour({
  1. int? timeEpoch,
  2. String? time,
  3. double? tempC,
  4. double? tempF,
  5. int? isDay,
  6. Condition? condition,
  7. double? windMph,
  8. double? windKph,
  9. int? windDegree,
  10. String? windDir,
  11. double? pressureMb,
  12. double? pressureIn,
  13. double? precipMm,
  14. double? precipIn,
  15. int? humidity,
  16. int? cloud,
  17. double? feelslikeC,
  18. double? feelslikeF,
  19. double? windchillC,
  20. double? windchillF,
  21. double? heatindexC,
  22. double? heatindexF,
  23. double? dewpointC,
  24. double? dewpointF,
  25. int? willItRain,
  26. int? chanceOfRain,
  27. int? willItSnow,
  28. int? chanceOfSnow,
  29. double? visKm,
  30. double? visMiles,
  31. double? gustMph,
  32. double? gustKph,
  33. double? uv,
})

Implementation

Hour({
  this.timeEpoch,
  this.time,
  this.tempC,
  this.tempF,
  this.isDay,
  this.condition,
  this.windMph,
  this.windKph,
  this.windDegree,
  this.windDir,
  this.pressureMb,
  this.pressureIn,
  this.precipMm,
  this.precipIn,
  this.humidity,
  this.cloud,
  this.feelslikeC,
  this.feelslikeF,
  this.windchillC,
  this.windchillF,
  this.heatindexC,
  this.heatindexF,
  this.dewpointC,
  this.dewpointF,
  this.willItRain,
  this.chanceOfRain,
  this.willItSnow,
  this.chanceOfSnow,
  this.visKm,
  this.visMiles,
  this.gustMph,
  this.gustKph,
  this.uv,
});