ChatStatisticsMessageInteractionInfo constructor

const ChatStatisticsMessageInteractionInfo({
  1. required int messageId,
  2. required int viewCount,
  3. required int forwardCount,
})

Contains statistics about interactions with a message

Implementation

const ChatStatisticsMessageInteractionInfo({
  required this.messageId,
  required this.viewCount,
  required this.forwardCount,
});