PostInteractionCountersStory constructor

const PostInteractionCountersStory({
  1. required int storyId,
  2. required int views,
  3. required int forwards,
  4. required int reactions,
})

Post Interaction Counters Story constructor.

Implementation

const PostInteractionCountersStory({
  required this.storyId,
  required this.views,
  required this.forwards,
  required this.reactions,
}) : super._();