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