HourData constructor

HourData(
  1. int? _timeEpoch,
  2. String? _time,
  3. double? _tempC,
  4. double? _tempF,
  5. int? _isDay,
  6. ConditionData _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. double? _snowCm,
  16. int? _humidity,
  17. int? _cloud,
  18. double? _feelslikeC,
  19. double? _feelslikeF,
  20. double? _windchillC,
  21. double? _windchillF,
  22. double? _heatindexC,
  23. double? _heatindexF,
  24. double? _dewpointC,
  25. double? _dewpointF,
  26. int? _willItRain,
  27. int? _chanceOfRain,
  28. int? _willItSnow,
  29. int? _chanceOfSnow,
  30. double? _visKm,
  31. double? _visMiles,
  32. double? _gustMph,
  33. double? _gustKph,
  34. double? _uv,
)

Implementation

HourData(
    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._snowCm,
    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);