clearCache static method

Future<void> clearCache()

Clear all local disk and memory cache.

Implementation

static Future<void> clearCache() async {
  _ensure();
  await _provider!.clearCache();
}