MastodonNotificationGroup constructor

const MastodonNotificationGroup({
  1. required String groupKey,
  2. required int notificationsCount,
  3. required MastodonNotificationType type,
  4. required String mostRecentNotificationId,
  5. String? pageMinId,
  6. String? pageMaxId,
  7. DateTime? latestPageNotificationAt,
  8. required List<String> sampleAccountIds,
  9. String? statusId,
  10. MastodonReport? report,
  11. MastodonRelationshipSeveranceEvent? event,
  12. MastodonAccountWarning? moderationWarning,
})

Implementation

const MastodonNotificationGroup({
  required this.groupKey,
  required this.notificationsCount,
  required this.type,
  required this.mostRecentNotificationId,
  this.pageMinId,
  this.pageMaxId,
  this.latestPageNotificationAt,
  required this.sampleAccountIds,
  this.statusId,
  this.report,
  this.event,
  this.moderationWarning,
});