StatsBroadcastStats constructor

const StatsBroadcastStats({
  1. required StatsDateRangeDaysBase period,
  2. required StatsAbsValueAndPrevBase followers,
  3. required StatsAbsValueAndPrevBase viewsPerPost,
  4. required StatsAbsValueAndPrevBase sharesPerPost,
  5. required StatsAbsValueAndPrevBase reactionsPerPost,
  6. required StatsAbsValueAndPrevBase viewsPerStory,
  7. required StatsAbsValueAndPrevBase sharesPerStory,
  8. required StatsAbsValueAndPrevBase reactionsPerStory,
  9. required StatsPercentValueBase enabledNotifications,
  10. required StatsGraphBase growthGraph,
  11. required StatsGraphBase followersGraph,
  12. required StatsGraphBase muteGraph,
  13. required StatsGraphBase topHoursGraph,
  14. required StatsGraphBase interactionsGraph,
  15. required StatsGraphBase ivInteractionsGraph,
  16. required StatsGraphBase viewsBySourceGraph,
  17. required StatsGraphBase newFollowersBySourceGraph,
  18. required StatsGraphBase languagesGraph,
  19. required StatsGraphBase reactionsByEmotionGraph,
  20. required StatsGraphBase storyInteractionsGraph,
  21. required StatsGraphBase storyReactionsByEmotionGraph,
  22. required List<PostInteractionCountersBase> recentPostsInteractions,
})

Stats Broadcast Stats constructor.

Implementation

const StatsBroadcastStats({
  required this.period,
  required this.followers,
  required this.viewsPerPost,
  required this.sharesPerPost,
  required this.reactionsPerPost,
  required this.viewsPerStory,
  required this.sharesPerStory,
  required this.reactionsPerStory,
  required this.enabledNotifications,
  required this.growthGraph,
  required this.followersGraph,
  required this.muteGraph,
  required this.topHoursGraph,
  required this.interactionsGraph,
  required this.ivInteractionsGraph,
  required this.viewsBySourceGraph,
  required this.newFollowersBySourceGraph,
  required this.languagesGraph,
  required this.reactionsByEmotionGraph,
  required this.storyInteractionsGraph,
  required this.storyReactionsByEmotionGraph,
  required this.recentPostsInteractions,
}) : super._();