open_meteo 2.0.1 copy "open_meteo: ^2.0.1" to clipboard
open_meteo: ^2.0.1 copied to clipboard

A simple, fast, asynchronous Dart/Flutter package for accessing the Open-Meteo API.

example/main.dart

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);
}
9
likes
160
pub points
67%
popularity

Publisher

verified publisherneurs.click

A simple, fast, asynchronous Dart/Flutter package for accessing the Open-Meteo API.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flat_buffers, http

More

Packages that depend on open_meteo