MastodonRelationship constructor
- required String id,
- required bool following,
- required bool showingReblogs,
- required bool notifying,
- required bool followedBy,
- required bool blocking,
- required bool blockedBy,
- required bool muting,
- required bool mutingNotifications,
- required bool requested,
- required bool requestedBy,
- required bool domainBlocking,
- required bool endorsed,
- required String note,
- List<
String> ? languages,
Creates a MastodonRelationship with the given fields.
Implementation
const MastodonRelationship({
required this.id,
required this.following,
required this.showingReblogs,
required this.notifying,
required this.followedBy,
required this.blocking,
required this.blockedBy,
required this.muting,
required this.mutingNotifications,
required this.requested,
required this.requestedBy,
required this.domainBlocking,
required this.endorsed,
required this.note,
this.languages,
});