Social constructor

Social({
  1. int? likeCount,
  2. int? commentCount,
  3. int? sharedCount,
  4. int? viewCount,
  5. int? subscriberCount,
})

Implementation

Social(
    {this.likeCount,
    this.commentCount,
    this.sharedCount,
    this.viewCount,
    this.subscriberCount});