verifyLocation method

  1. @override
Future<void> verifyLocation()
override

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());
  }
}