OneCallHourlyWeather constructor

OneCallHourlyWeather({
  1. WeatherType? weatherType,
  2. String? mainDescription,
  3. String? secondaryDescription,
  4. num? temp,
  5. num? feelsLikeTemp,
  6. num? dewPoint,
  7. num? humidity,
  8. num? cloudiness,
  9. num? uvi,
  10. num? visibility,
  11. num? pressure,
  12. num? windSpeed,
  13. int? windDegree,
  14. num? windGustSpeed,
  15. int? precipitationChance,
  16. num? rainAmountLast1h,
  17. num? snowAmountLast1h,
  18. DateTime? timeStamp,
})

Implementation

OneCallHourlyWeather({
  this.weatherType,
  this.mainDescription,
  this.secondaryDescription,
  this.temp,
  this.feelsLikeTemp,
  this.dewPoint,
  this.humidity,
  this.cloudiness,
  this.uvi,
  this.visibility,
  this.pressure,
  this.windSpeed,
  this.windDegree,
  this.windGustSpeed,
  this.precipitationChance,
  this.rainAmountLast1h,
  this.snowAmountLast1h,
  this.timeStamp,
});