UserInfo constructor

const UserInfo({
  1. String? email,
  2. String? name,
  3. String? profileImage,
  4. String? authConnectionId,
  5. String? userId,
  6. String? authConnection,
  7. String? groupedAuthConnectionId,
  8. String? dappShare,
  9. String? idToken,
  10. String? oAuthIdToken,
  11. String? oAuthAccessToken,
  12. bool? isMfaEnabled,
})

Implementation

const UserInfo({
  this.email,
  this.name,
  this.profileImage,
  this.authConnectionId,
  this.userId,
  this.authConnection,
  this.groupedAuthConnectionId,
  this.dappShare,
  this.idToken,
  this.oAuthIdToken,
  this.oAuthAccessToken,
  this.isMfaEnabled,
});