removeVirtualAuthenticator method

Future<void> removeVirtualAuthenticator(
  1. AuthenticatorId authenticatorId
)

Removes the given authenticator.

Implementation

Future<void> removeVirtualAuthenticator(
    AuthenticatorId authenticatorId) async {
  await _client.send('WebAuthn.removeVirtualAuthenticator', {
    'authenticatorId': authenticatorId,
  });
}