FutureWeatherBean constructor

FutureWeatherBean({
  1. required int weatherId,
  2. required int lowTemperature,
  3. required int highTemperature,
})

Implementation

FutureWeatherBean({
  required this.weatherId,
  required this.lowTemperature,
  required this.highTemperature,
});