getUserCurrentLocation method
Implementation
Future<Position> getUserCurrentLocation() async {
await Geolocator.requestPermission()
.then((value) {})
.onError((error, stackTrace) async {
await Geolocator.requestPermission();
LogMessage.d("ERROR", error.toString());
});
return await Geolocator.getCurrentPosition();
}