Get Additional User Info

Use the getAdditionalUserInfo method to retrieve additional information about the user from the user credential.

Method

final additionalUserInfo = await FirebaseApp.firebaseAuth?.getAdditionalUserInfo();

Parameters

  • None

Return

  • AdditionalUserInfo?: Returns an AdditionalUserInfo object containing extra information about the user.

This method provides additional details about the user, such as whether the user is new or the profile information associated with the user credential.

Last updated