weather 0.0.3 weather: ^0.0.3 copied to clipboard
A weather plugin using the OpenWeatherMap API.
weather #
Install #
Add weather
as a dependency in pubspec.yaml
.
For help on adding as a dependency, view the documentation.
Usage #
First and foremost you need an API key from OpenWeatherMap, which can be acquired for free here.
String key = 'YOUR_API KEY';
Weather weather = new Weather(key);
Query current weather #
For api documentation on the current weather API, see the documentation.
String forecastJSON = await weather.getFiveDayForecast();
Query 5 day forecast #
For api documentation on the forecast API, see the documentation.
String weatherJSON = await weather.getCurrentWeather();