clearCache static method

void clearCache()

method to clear all the cached data using the cacheProvider

Implementation

static void clearCache() {
  ensureCacheProvider();
  _cacheProvider.removeAll();
}