UserInfoResponse constructor

UserInfoResponse({
  1. String? sub,
  2. String? name,
  3. String? givenName,
  4. String? familyName,
  5. String? email,
  6. bool? emailVerified,
})

Returns a new UserInfoResponse instance.

Implementation

UserInfoResponse({
  this.sub,
  this.name,
  this.givenName,
  this.familyName,
  this.email,
  this.emailVerified,
});