UserProfile constructor

const UserProfile({
  1. required String sub,
  2. String? name,
  3. String? givenName,
  4. String? familyName,
  5. String? middleName,
  6. String? nickname,
  7. String? preferredUsername,
  8. Uri? profileUrl,
  9. Uri? pictureUrl,
  10. Uri? websiteUrl,
  11. String? email,
  12. bool? isEmailVerified,
  13. String? gender,
  14. String? birthdate,
  15. String? zoneinfo,
  16. String? locale,
  17. String? phoneNumber,
  18. bool? isPhoneNumberVerified,
  19. Map<String, String>? address,
  20. DateTime? updatedAt,
  21. Map<String, dynamic>? customClaims,
})

Implementation

const UserProfile({
  required this.sub,
  this.name,
  this.givenName,
  this.familyName,
  this.middleName,
  this.nickname,
  this.preferredUsername,
  this.profileUrl,
  this.pictureUrl,
  this.websiteUrl,
  this.email,
  this.isEmailVerified,
  this.gender,
  this.birthdate,
  this.zoneinfo,
  this.locale,
  this.phoneNumber,
  this.isPhoneNumberVerified,
  this.address,
  this.updatedAt,
  this.customClaims,
});