FacebookPost constructor

FacebookPost({
  1. String? postUrl,
  2. String? videoSdUrl,
  3. String? videoHdUrl,
  4. String? videoMp3Url,
  5. int? commentsCount,
  6. int? sharesCount,
})

Implementation

FacebookPost({
  this.postUrl,
  this.videoSdUrl,
  this.videoHdUrl,
  this.videoMp3Url,
  this.commentsCount,
  this.sharesCount,
});