CommunityData constructor

CommunityData({
  1. dynamic facebookLikes,
  2. int twitterFollowers,
  3. double redditAveragePosts48H,
  4. double redditAverageComments48H,
  5. int redditSubscribers,
  6. int redditAccountsActive48H,
  7. int telegramChannelUserCount,
})

Implementation

CommunityData({
  this.facebookLikes,
  this.twitterFollowers,
  this.redditAveragePosts48H,
  this.redditAverageComments48H,
  this.redditSubscribers,
  this.redditAccountsActive48H,
  this.telegramChannelUserCount,
});