clearCache static method

Future<void> clearCache()

Implementation

static Future<void> clearCache() async {
  try {
    PlacesCacheManager().clearCache();
    await PlacesCachePersistence.clearPodPlacesCache();
    await EncryptedPlacesService.resetSessionState();
  } catch (_) {}
}