await client.addPasskey(
passkeyCallback: (options) async {
return passkeyCredentialManager.register(options);
},
);
Get all the passkeys linked to a user account
final passkeys = await client.getPasskeys();
To remove a passkey, you need to know the passkey ID. You can get the passkey ID by calling getPasskeys
method.
await client.removePasskey(passkeyId: passkeyId);