passkeys method

Future<List<Passkey>>? passkeys()

Retrieves a list of WebAuthn passkeys associated with the authenticated user.

Returns: A Future<List<Passkey>> containing all WebAuthn passkeys for the current user.

Throws: PassageError if an error occurs during the retrieval process.

Implementation

Future<List<Passkey>>? passkeys() {
return PassageFlutterPlatform.instance.passkeys();
}