AvailableReactions constructor

const AvailableReactions({
  1. required List<AvailableReaction> topReactions,
  2. required List<AvailableReaction> recentReactions,
  3. required List<AvailableReaction> popularReactions,
  4. required bool allowCustomEmoji,
  5. dynamic extra,
  6. int? clientId,
})

Represents a list of reactions that can be added to a message

Implementation

const AvailableReactions({
  required this.topReactions,
  required this.recentReactions,
  required this.popularReactions,
  required this.allowCustomEmoji,
  this.extra,
  this.clientId,
});