clearCache static method

void clearCache()

Implementation

static void clearCache() {
  try {
    instance.emptyCache();
  } catch (ex) {
    if (kDebugMode) {
      print("Some exception happened while clearing the cache");
    }
  }
}