Flutter: Get Authenticator Assurance Level

Returns the Authenticator Assurance Level (AAL) for the active session.

Examples

Get the AAL details of a session

final res = supabase.auth.mfa.getAuthenticatorAssuranceLevel();
final currentLevel = res.currentLevel;
final nextLevel = res.nextLevel;
final currentAuthenticationMethods = res.currentAuthenticationMethods;