MessageInteractionInfo constructor

MessageInteractionInfo({
  1. required int viewCount,
  2. required int forwardCount,
  3. MessageReplyInfo? replyInfo,
  4. MessageReactions? reactions,
})

Implementation

MessageInteractionInfo({
  required this.viewCount,
  required this.forwardCount,
  this.replyInfo,
  this.reactions,
});