MessageReaction constructor

const MessageReaction({
  1. required ReactionType type,
  2. required int totalCount,
  3. required bool isChosen,
  4. required List<MessageSender> recentSenderIds,
})

Contains information about a reaction to a message

Implementation

const MessageReaction({
  required this.type,
  required this.totalCount,
  required this.isChosen,
  required this.recentSenderIds,
});