0 purchases
sunrise sunset
Sunrise Sunset #
Dart API that provides sunset and sunrise times for a given latitude and longitude. This API is a wrapper around the
free Sunset and Sunrise Times API
Getting started #
You should ensure that you add the dependency in your project.
dependencies:
sunrise_sunset: "^1.0.2"
copied to clipboard
You should then run flutter packages upgrade or update your packages in IntelliJ.
Usage #
Import the file:
import 'package:sunrise_sunset/sunrise_sunset.dart';
copied to clipboard
To use simply call the static method SunriseSunset.getResults(...).
Time values in response will be expressed Datetime instances and day_length will be expressed in seconds.
final response = await SunriseSunset.getResults(date: DateTime.now(), latitude: 36.7201600, longitude: -4.4203400);
copied to clipboard
Parameters #
Here is a list of supported parameters to use in the SunriseSunset.getResults() method
Name
Optional
latitude
No
longitude
No
date
Yes (If not present, date defaults to current date)
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.