darksky_weather 1.2.0 copy "darksky_weather: ^1.2.0" to clipboard
darksky_weather: ^1.2.0 copied to clipboard

outdated

A dart library for interfacing with the Dark Sky Weather API.

darksky_weather #

A dart library for interfacing with the Dark Sky Weather API.

Usage #

A simple usage example:

import 'dart:async';
import 'package:darksky_weather/darksky_weather_io.dart';

Future<Null> main() async {
  var darksky = new DarkSkyWeather("API_KEY_HERE",
      language: Language.German, units: Units.SI);
  var forecast = await darksky.getForecast(48.21, 16.363);

  print(forecast.currently.temperature);
  print(forecast.currently.summary);
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

6
likes
0
pub points
42%
popularity

Publisher

unverified uploader

A dart library for interfacing with the Dark Sky Weather API.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http, json_annotation

More

Packages that depend on darksky_weather