open_meteo 2.0.2 open_meteo: ^2.0.2 copied to clipboard
A simple, fast, asynchronous Dart/Flutter package for accessing the Open-Meteo API.
import 'package:open_meteo/open_meteo.dart';
void main() async {
final weather = WeatherApi();
final response = await weather.request(
latitude: 52.52,
longitude: 13.41,
hourly: {WeatherHourly.temperature_2m},
);
final data = response.hourlyData[WeatherHourly.temperature_2m]!;
final currentTemperature = data.values;
print(currentTemperature);
}