clearAllCache static method

Future<void> clearAllCache()

Clear all cached data

Implementation

static Future<void> clearAllCache() async {
  _ensureInitialized();
  await _prefs!.clear();
}