removeServiceWorkers method

Future<void> removeServiceWorkers(
  1. RemovalOptions options
)

Clears websites' service workers. returns Called when websites' service workers have been cleared.

Implementation

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