AuthUser constructor

const AuthUser({
  1. required String uid,
  2. String? email,
  3. String? displayName,
  4. String? photoURL,
  5. String? idToken,
  6. bool isAnonymous = false,
  7. bool emailVerified = false,
})

Implementation

const AuthUser({
  required this.uid,
  this.email,
  this.displayName,
  this.photoURL,
  this.idToken,
  this.isAnonymous = false,
  this.emailVerified = false,
});