ChatStatisticsSupergroup constructor

ChatStatisticsSupergroup({
  1. DateRange? period,
  2. StatisticalValue? memberCount,
  3. StatisticalValue? messageCount,
  4. StatisticalValue? viewerCount,
  5. StatisticalValue? senderCount,
  6. StatisticalGraph? memberCountGraph,
  7. StatisticalGraph? joinGraph,
  8. StatisticalGraph? joinBySourceGraph,
  9. StatisticalGraph? languageGraph,
  10. StatisticalGraph? messageContentGraph,
  11. StatisticalGraph? actionGraph,
  12. StatisticalGraph? dayGraph,
  13. StatisticalGraph? weekGraph,
  14. required List<ChatStatisticsMessageSenderInfo> topSenders,
  15. required List<ChatStatisticsAdministratorActionsInfo> topAdministrators,
  16. required List<ChatStatisticsInviterInfo> topInviters,
})

Implementation

ChatStatisticsSupergroup({
  this.period,
  this.memberCount,
  this.messageCount,
  this.viewerCount,
  this.senderCount,
  this.memberCountGraph,
  this.joinGraph,
  this.joinBySourceGraph,
  this.languageGraph,
  this.messageContentGraph,
  this.actionGraph,
  this.dayGraph,
  this.weekGraph,
  required this.topSenders,
  required this.topAdministrators,
  required this.topInviters,
});