removePasswords method
Clears the browser's stored passwords.
returns
Called when the browser's passwords have been cleared.
Implementation
Future<void> removePasswords(RemovalOptions options) async {
await promiseToFuture<void>(
$js.chrome.browsingData.removePasswords(options.toJS));
}