Which is best - getting location from Global properties or using a custom function?
In my custom function I use;
Position position = await Geolocator.getCurrentPosition(
desiredAccuracy: LocationAccuracy.high);
What accuracy is the location that comes from Global properties?
Which is faster?
Do either subscribe to GPS updates?