StoriesStoryReactionsList constructor

const StoriesStoryReactionsList({
  1. required int count,
  2. required List<StoryReactionBase> reactions,
  3. required List<ChatBase> chats,
  4. required List<UserBase> users,
  5. String? nextOffset,
})

Stories Story Reactions List constructor.

Implementation

const StoriesStoryReactionsList({
  required this.count,
  required this.reactions,
  required this.chats,
  required this.users,
  this.nextOffset,
}) : super._();