MastodonAccount constructor
const
MastodonAccount({ - required String id,
- required String username,
- required String acct,
- required String displayName,
- required String note,
- required String url,
- required String avatarUrl,
- required String avatarStaticUrl,
- required bool locked,
- required bool bot,
- required int followersCount,
- required int followingCount,
- required int statusesCount,
- required List<MastodonField> fields,
- required List<MastodonCustomEmoji> emojis,
- bool? discoverable,
- bool? noindex,
- DateTime? createdAt,
- DateTime? lastStatusAt,
- MastodonAccount? moved,
- bool? suspended,
- bool? limited,
- bool? hideCollections,
- String? avatarBlurhash,
})
Implementation
const MastodonAccount({
required this.id,
required this.username,
required this.acct,
required this.displayName,
required this.note,
required this.url,
required this.avatarUrl,
required this.avatarStaticUrl,
required this.headerUrl,
required this.headerStaticUrl,
required this.locked,
required this.bot,
required this.followersCount,
required this.followingCount,
required this.statusesCount,
required this.fields,
required this.emojis,
this.discoverable,
this.noindex,
this.createdAt,
this.lastStatusAt,
this.moved,
this.suspended,
this.limited,
this.hideCollections,
this.avatarBlurhash,
this.headerBlurhash,
});