removeLocalStorage method

Future<void> removeLocalStorage(
  1. RemovalOptions options
)

Clears websites' local storage data. returns Called when websites' local storage has been cleared.

Implementation

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