StoryViews constructor

const StoryViews({
  1. required bool hasViewers,
  2. required int viewsCount,
  3. int? forwardsCount,
  4. List<ReactionCountBase>? reactions,
  5. int? reactionsCount,
  6. List<int>? recentViewers,
})

Story Views constructor.

Implementation

const StoryViews({
  required this.hasViewers,
  required this.viewsCount,
  this.forwardsCount,
  this.reactions,
  this.reactionsCount,
  this.recentViewers,
}) : super._();