ChatStatisticsChannel constructor

ChatStatisticsChannel({
  1. DateRange? period,
  2. StatisticalValue? memberCount,
  3. StatisticalValue? meanMessageViewCount,
  4. StatisticalValue? meanMessageShareCount,
  5. StatisticalValue? meanMessageReactionCount,
  6. StatisticalValue? meanStoryViewCount,
  7. StatisticalValue? meanStoryShareCount,
  8. StatisticalValue? meanStoryReactionCount,
  9. required double enabledNotificationsPercentage,
  10. StatisticalGraph? memberCountGraph,
  11. StatisticalGraph? joinGraph,
  12. StatisticalGraph? muteGraph,
  13. StatisticalGraph? viewCountByHourGraph,
  14. StatisticalGraph? viewCountBySourceGraph,
  15. StatisticalGraph? joinBySourceGraph,
  16. StatisticalGraph? languageGraph,
  17. StatisticalGraph? messageInteractionGraph,
  18. StatisticalGraph? messageReactionGraph,
  19. StatisticalGraph? storyInteractionGraph,
  20. StatisticalGraph? storyReactionGraph,
  21. StatisticalGraph? instantViewInteractionGraph,
  22. required List<ChatStatisticsInteractionInfo> recentInteractions,
})

Implementation

ChatStatisticsChannel({
  this.period,
  this.memberCount,
  this.meanMessageViewCount,
  this.meanMessageShareCount,
  this.meanMessageReactionCount,
  this.meanStoryViewCount,
  this.meanStoryShareCount,
  this.meanStoryReactionCount,
  required this.enabledNotificationsPercentage,
  this.memberCountGraph,
  this.joinGraph,
  this.muteGraph,
  this.viewCountByHourGraph,
  this.viewCountBySourceGraph,
  this.joinBySourceGraph,
  this.languageGraph,
  this.messageInteractionGraph,
  this.messageReactionGraph,
  this.storyInteractionGraph,
  this.storyReactionGraph,
  this.instantViewInteractionGraph,
  required this.recentInteractions,
});