StoryInteractions constructor

StoryInteractions({
  1. required int totalCount,
  2. required int totalForwardCount,
  3. required int totalReactionCount,
  4. required List<StoryInteraction> interactions,
  5. required String nextOffset,
})

Implementation

StoryInteractions({
  required this.totalCount,
  required this.totalForwardCount,
  required this.totalReactionCount,
  required this.interactions,
  required this.nextOffset,
});