removeAppcache method

Future<void> removeAppcache(
  1. RemovalOptions options
)

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