Reputation: 2411
As in the question. How to track location in background service in flutter?
Upvotes: 1
Views: 858
Reputation: 1422
geolocator: ^4.0.3
'package:geolocator/geolocator.dart';
Use the below code
void getLocation() async {
Position position = await Geolocator()
.getCurrentPosition(desiredAccuracy: LocationAccuracy.high);
print(position);
}
Upvotes: 1
Reputation: 2327
Just use the geolocator plugin, you only need one line of code!
Upvotes: 1