UserSessionData constructor

UserSessionData(
  1. String uid,
  2. String? email,
  3. String? displayName,
  4. bool emailVerified,
  5. bool isAnonymous,
  6. String? phoneNumber,
  7. String? photoURL,
)

Constructor.

Implementation

UserSessionData(
  this.uid,
  this.email,
  this.displayName,
  this.emailVerified,
  this.isAnonymous,
  this.phoneNumber,
  this.photoURL,
);