MessageInteractionInfo constructor

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

Contains information about interactions with a message

Implementation

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