Skip to content

Commit

Permalink
Mark function return types in README
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwin-dailype committed Dec 7, 2023
1 parent c1e63d0 commit 0919535
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -108,11 +108,11 @@ Future<void> main() async {
runApp(MyApp());
}
startLocationTracking() async {
Future startLocationTracking() async {
await BackgroundLocationTrackerManager.startTracking();
}
stopLocationTracking() async {
Future stopLocationTracking() async {
await BackgroundLocationTrackerManager.stopTracking();
}
Expand Down

0 comments on commit 0919535

Please sign in to comment.