removeServiceWorkers method
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));
}