PlexActivityFeed constructor

const PlexActivityFeed({
  1. Key? key,
  2. required List<PlexActivityItem> items,
  3. bool loading = false,
  4. String emptyTitle = 'Nothing here yet',
  5. String? emptyMessage,
  6. bool groupByDay = true,
  7. DateTime? now,
})

Implementation

const PlexActivityFeed({
  super.key,
  required this.items,
  this.loading = false,
  this.emptyTitle = 'Nothing here yet',
  this.emptyMessage,
  this.groupByDay = true,
  this.now,
});