MastodonOAuthUserInfo constructor

const MastodonOAuthUserInfo({
  1. required String iss,
  2. required String sub,
  3. required String name,
  4. required String preferredUsername,
  5. required String profile,
  6. required String picture,
})

Creates a MastodonOAuthUserInfo with the given fields.

Implementation

const MastodonOAuthUserInfo({
  required this.iss,
  required this.sub,
  required this.name,
  required this.preferredUsername,
  required this.profile,
  required this.picture,
});