checkForAppUpdates method

Future<void> checkForAppUpdates()

Implementation

Future<void> checkForAppUpdates() async {
  try {
    logv('Manually checking for app updates');
    await AppVersionUpdateService().forceVersionCheck();
  } catch (e) {
    loge('Error checking for app updates: $e');
  }
}