OpenWeatherByLocation constructor
const
OpenWeatherByLocation({})
Creates an OpenWeatherByLocation widget.
The apiKey
, latitude
, and longitude
parameters are required.
The weatherUnits
defaults to WeatherUnits.IMPERIAL, color
defaults to Colors.black,
and language
defaults to Languages.ENGLISH.
Implementation
const OpenWeatherByLocation({
super.key,
required this.apiKey,
required this.latitude,
required this.longitude,
this.weatherUnits = WeatherUnits.IMPERIAL,
this.color = Colors.black,
this.language = Languages.ENGLISH,
});