removeCache method

Future<void> removeCache(
  1. RemovalOptions options
)

Clears the browser's cache. returns Called when the browser's cache has been cleared.

Implementation

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