CurrentWeather constructor

CurrentWeather(
  1. int? weathercode,
  2. double? temperature,
  3. DateTime? time,
  4. double? winddirection,
  5. double? windspeed,
)

Implementation

CurrentWeather(this.weathercode,
    this.temperature,
    this.time,
    this.winddirection,
    this.windspeed);