CurrentWeather constructor

CurrentWeather({
  1. String? cityName,
  2. String? countryCode,
  3. LocationCoords? locationCoords,
  4. int? weatherID,
  5. String? iconID,
  6. WeatherType? weatherType,
  7. String? mainDescription,
  8. String? secondaryDescription,
  9. num? temp,
  10. num? feelsLike,
  11. num? minTemp,
  12. num? maxTemp,
  13. num? visibility,
  14. num? humidity,
  15. num? cloudiness,
  16. num? pressure,
  17. num? pressureGroundLevel,
  18. num? pressureSeaLevel,
  19. num? windSpeed,
  20. int? windDegree,
  21. num? windGustSpeed,
  22. num? rainAmountLast1h,
  23. num? rainAmountLast3h,
  24. num? snowAmountLast1h,
  25. num? snowAmountLast3h,
  26. DateTime? sunrise,
  27. DateTime? sunset,
  28. DateTime? timeStamp,
  29. int? timezoneOffset,
})

Implementation

CurrentWeather({
  this.cityName,
  this.countryCode,
  this.locationCoords,
  this.weatherID,
  this.iconID,
  this.weatherType,
  this.mainDescription,
  this.secondaryDescription,
  this.temp,
  this.feelsLike,
  this.minTemp,
  this.maxTemp,
  this.visibility,
  this.humidity,
  this.cloudiness,
  this.pressure,
  this.pressureGroundLevel,
  this.pressureSeaLevel,
  this.windSpeed,
  this.windDegree,
  this.windGustSpeed,
  this.rainAmountLast1h,
  this.rainAmountLast3h,
  this.snowAmountLast1h,
  this.snowAmountLast3h,
  this.sunrise,
  this.sunset,
  this.timeStamp,
  this.timezoneOffset,
});