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.
example/openweather_example.dart
import 'package:openweather/openweather.dart';
main() async {
var client = OpenWeatherClient("SOMEAPIKEY");
CityWeather weatherData =
await client.getCityWeatherByCityName("Dhaka");
print(weatherData.name); // Dhaka
}