OneCallWeather constructor

OneCallWeather({
  1. LocationCoords? locationCoords,
  2. String? timeZoneName,
  3. int? timeZoneOffset,
  4. OneCallCurrentWeather? currentWeather,
  5. List<OneCallMinutelyWeather?>? minutelyWeather,
  6. List<OneCallHourlyWeather?>? hourlyWeather,
  7. List<OneCallDailyWeather?>? dailyWeather,
  8. OneCallAlertsWeather? alertsWeather,
})

Implementation

OneCallWeather({
  this.locationCoords,
  this.timeZoneName,
  this.timeZoneOffset,
  this.currentWeather,
  this.minutelyWeather,
  this.hourlyWeather,
  this.dailyWeather,
  this.alertsWeather,
});