Forecast constructor

Forecast({
  1. required double latitude,
  2. required double longitude,
  3. String? timezone,
  4. List<String>? daily,
  5. bool? current_weather,
  6. List<String>? hourly,
  7. String? end_date,
  8. int? past_days,
  9. String? precipitation_unit,
  10. String? start_date,
  11. String? temperature_unit,
  12. String? timeformat,
  13. String? windspeed_unit,
})

Implementation

Forecast({required this.latitude,
  required this.longitude,
this.timezone,
this.daily,
this.current_weather,
this.hourly,
this.end_date,
this.past_days,
this.precipitation_unit,
this.start_date,
this.temperature_unit,
this.timeformat,
this.windspeed_unit});