MastodonRelationshipSeveranceEvent constructor

const MastodonRelationshipSeveranceEvent({
  1. required String id,
  2. required String type,
  3. required bool purged,
  4. required String targetName,
  5. required int followersCount,
  6. required int followingCount,
  7. DateTime? createdAt,
})

Implementation

const MastodonRelationshipSeveranceEvent({
  required this.id,
  required this.type,
  required this.purged,
  required this.targetName,
  required this.followersCount,
  required this.followingCount,
  this.createdAt,
});