login method
Authenticates the user related to the given Passkey.
Implementation
Future<AuthSuccess> login(
final Session session, {
required final PasskeyLoginRequest loginRequest,
}) async {
return await passkeyIdp.login(session, request: loginRequest);
}