Fetch Sign In Methods For Email

Use the fetchSignInMethodsForEmail method to retrieve the sign-in methods associated with a given email address.

Method

final methods = await FirebaseApp.firebaseAuth?.fetchSignInMethodsForEmail(email);

Parameters

  • email (String): The email address for which to retrieve associated sign-in methods.

Return

  • List<String>: Returns a list of sign-in methods associated with the provided email (e.g., ['password', 'google.com']).

This method allows you to retrieve the available sign-in methods for a specific email address.

Last updated