cuba_weather_dart 0.1.3 cuba_weather_dart: ^0.1.3 copied to clipboard
Dart client for www.redcuba.cu weather API. Given a location in Cuba, if it is within the permitted locations, meteorological data on the location is obtained.
import 'package:cuba_weather_dart/cuba_weather_dart.dart';
void main() {
var cubaWeather = CubaWeather();
cubaWeather.getWeather('Habana').then((weather) {
print(weather.cityName);
});
}