UserCredentialPlatform class abstract

A UserCredential is returned from authentication requests such as createUserWithEmailAndPassword.

Inheritance
  • Object
  • PlatformInterface
  • UserCredentialPlatform

Constructors

UserCredentialPlatform({required FirebaseAuthPlatform auth, AdditionalUserInfo? additionalUserInfo, AuthCredential? credential, UserPlatform? user})

Properties

additionalUserInfo AdditionalUserInfo?
Returns additional information about the user, such as whether they are a newly created one.
final
auth FirebaseAuthPlatform
The current FirebaseAuth instance.
final
credential AuthCredential?
The users AuthCredential.
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
user UserPlatform?
Returns a UserPlatform containing additional information and user specific methods.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

verify(UserCredentialPlatform instance) → void
Ensures that any delegate class has extended a UserCredentialPlatform.
override