OpenIDConnectProfile constructor

OpenIDConnectProfile(
  1. String? name,
  2. String? familyName,
  3. String? nickname,
  4. String? givenName,
  5. String? middleName,
  6. String? preferredUsername,
  7. String? profile,
  8. String? picture,
  9. String? website,
  10. String? gender,
  11. String? birthdate,
  12. String? zoneinfo,
  13. String? locale,
  14. int? updatedAt,
  15. String? email,
  16. bool? emailVerified,
  17. String? phoneNumber,
  18. bool? phoneNumberVerified,
  19. OIDAddress? address,
)

Implementation

OpenIDConnectProfile(
    this.name,
    this.familyName,
    this.nickname,
    this.givenName,
    this.middleName,
    this.preferredUsername,
    this.profile,
    this.picture,
    this.website,
    this.gender,
    this.birthdate,
    this.zoneinfo,
    this.locale,
    this.updatedAt,
    this.email,
    this.emailVerified,
    this.phoneNumber,
    this.phoneNumberVerified,
    this.address);