AuthUserVO constructor

const AuthUserVO({
  1. String? uid,
  2. String? displayName,
  3. String? email,
  4. String? photoUrl,
  5. bool isEmailVerified = false,
  6. bool isAnonymous = false,
})

Implementation

const AuthUserVO({
  this.uid,
  this.displayName,
  this.email,
  this.photoUrl,
  this.isEmailVerified = false,
  this.isAnonymous = false,
});