verifyLocation method
Implementation
@override
Future<void> verifyLocation() async {
AppConfig.logger.t("Verifying location");
try {
profile.position = await GeoLocatorController().updateLocation(profile.id, profile.position);
} catch (e) {
AppConfig.logger.e(e.toString());
}
}