Is Sign In With Email Link

Use the isSignInWithEmailLink method to determine if a given link is a sign-in link generated by Firebase Authentication.

Method

bool status = await FirebaseApp.firebaseAuth?.isSignInWithEmailLink(emailLink);

Parameters

  • emailLink (String): The link to be verified as a sign-in link.

Return

  • bool: Returns true if the link is a valid sign-in link; otherwise, returns false.

This method checks if the provided link is a sign-in link generated by Firebase Authentication, helping you verify the validity of the link before proceeding with sign-in actions.

Last updated