Skip to content

Commit 0919535

Browse files
Mark function return types in README
1 parent c1e63d0 commit 0919535

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ Future<void> main() async {
108108
runApp(MyApp());
109109
}
110110
111-
startLocationTracking() async {
111+
Future startLocationTracking() async {
112112
await BackgroundLocationTrackerManager.startTracking();
113113
}
114114
115-
stopLocationTracking() async {
115+
Future stopLocationTracking() async {
116116
await BackgroundLocationTrackerManager.stopTracking();
117117
}
118118

0 commit comments

Comments
 (0)