UserInfo constructor

UserInfo(
  1. String? sub,
  2. String? name,
  3. String? picture,
  4. String? email,
  5. String? phoneNumber,
  6. String? birthday,
  7. String? address,
  8. List<String>? roles,
  9. List<String>? permissions,
  10. Map<String, Object?>? metadata,
)

Implementation

UserInfo(
  this.sub,
  this.name,
  this.picture,
  this.email,
  this.phoneNumber,
  this.birthday,
  this.address,
  this.roles,
  this.permissions,
  this.metadata,
);