openweather 3.9.2 openweather: ^3.9.2 copied to clipboard
An Openweather API Client for dart. Current Weather function is working. Further functionalities will be added in future versions.
OpenWeather API Client. #
An API Client to communicate with OpenWeather API
Usage #
A simple usage example:
import 'package:openweather/openweather.dart';
main() async {
var client = OpenWeatherClient("SOMEAPIKEY");
CityWeather weatherData =
await client.getCityWeatherByCityName("Dhaka");
print(weatherData.name); // Dhaka
}
Features and bugs #
Please file feature requests and bugs at the repository.