removeCacheStorage method

Future<void> removeCacheStorage(
  1. RemovalOptions options
)

Clears websites' cache storage data. returns Called when websites' cache storage has been cleared.

Implementation

Future<void> removeCacheStorage(RemovalOptions options) async {
  await promiseToFuture<void>(
      $js.chrome.browsingData.removeCacheStorage(options.toJS));
}