weather_japan 0.1.0
weather_japan: ^0.1.0 copied to clipboard
A weather forecast package inside Japan.
weather_japan #
This is a weather forecast package inside Japan.
The forecast source is 天気予報 API(livedoor 天気互換) that uses the data from 気象庁.
final weather = await Weather.fromLocation(lat: 33.1787095, lng: 129.6762743);
if (weather != null) {
print(weather.description);
}