clear method

Future<void> clear()

Clears cache and platform preferences that match filter options.

Implementation

Future<void> clear() async {
  _cache.clear();
  return _platformMethods.clear(allowList: _cacheOptions.allowList);
}