weather_japan 0.3.0
weather_japan: ^0.3.0 copied to clipboard
A weather forecast package inside Japan.
example/weather_japan_example.dart
import 'package:weather_japan/weather_japan.dart';
void main() async {
final weather = await Weather.fromLocation(lat: 33.1787095, lng: 129.6762743);
if (weather != null) {
print(weather);
}
}