UserInfo constructor

UserInfo({
  1. String? createdAt,
  2. String? customAttributes,
  3. bool? customAuth,
  4. bool? disabled,
  5. String? displayName,
  6. String? email,
  7. bool? emailVerified,
  8. String? lastLoginAt,
  9. String? localId,
  10. String? passwordHash,
  11. double? passwordUpdatedAt,
  12. String? phoneNumber,
  13. String? photoUrl,
  14. List<UserInfoProviderUserInfo>? providerUserInfo,
  15. String? rawPassword,
  16. String? salt,
  17. String? screenName,
  18. String? validSince,
  19. int? version,
})

Implementation

UserInfo({
  this.createdAt,
  this.customAttributes,
  this.customAuth,
  this.disabled,
  this.displayName,
  this.email,
  this.emailVerified,
  this.lastLoginAt,
  this.localId,
  this.passwordHash,
  this.passwordUpdatedAt,
  this.phoneNumber,
  this.photoUrl,
  this.providerUserInfo,
  this.rawPassword,
  this.salt,
  this.screenName,
  this.validSince,
  this.version,
});