Weather constructor

Weather({
  1. int? airData,
  2. String? airQuality,
  3. String? city,
  4. String? date,
  5. int? dateLong,
  6. String? dateForVoice,
  7. WeatherExp? exp,
  8. String? humidity,
  9. String? img,
  10. String? lastUpdateTime,
  11. String? pm25,
  12. String? precipitation,
  13. int? temp,
  14. String? tempHigh,
  15. String? tempLow,
  16. String? tempRange,
  17. String? tempReal,
  18. String? warning,
  19. String? weather,
  20. String? weatherDescription,
  21. String? weatherDescription3,
  22. String? weatherDescription7,
  23. int? weatherType,
  24. String? week,
  25. String? wind,
  26. int? windLevel,
})

Implementation

Weather({
  this.airData,
  this.airQuality,
  this.city,
  this.date,
  this.dateLong,
  this.dateForVoice,
  this.exp,
  this.humidity,
  this.img,
  this.lastUpdateTime,
  this.pm25,
  this.precipitation,
  this.temp,
  this.tempHigh,
  this.tempLow,
  this.tempRange,
  this.tempReal,
  this.warning,
  this.weather,
  this.weatherDescription,
  this.weatherDescription3,
  this.weatherDescription7,
  this.weatherType,
  this.week,
  this.wind,
  this.windLevel,
});