WeatherData constructor

WeatherData({
  1. int? temperature,
  2. Weather? weather,
  3. WindPower? wind_speed,
  4. WindDirection? wind_direction,
})

Implementation

WeatherData(
    {this.temperature, this.weather, this.wind_speed, this.wind_direction});