removeAppcache method
Clears websites' appcache data.
returns
Called when websites' appcache data has been cleared.
Implementation
Future<void> removeAppcache(RemovalOptions options) async {
await promiseToFuture<void>(
$js.chrome.browsingData.removeAppcache(options.toJS));
}