clearCredentials method

Future<void> clearCredentials(
  1. AuthenticatorId authenticatorId
)

Clears all the credentials from the specified device.

Implementation

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