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