HourlyWeatherPoint constructor

HourlyWeatherPoint({
  1. required DateTime time,
  2. required double temperature,
  3. int? humidity,
  4. double? windSpeed,
  5. double? precipitation,
})

Implementation

HourlyWeatherPoint({
  required this.time,
  required this.temperature,
  this.humidity,
  this.windSpeed,
  this.precipitation,
});