FeedEntity constructor

FeedEntity({
  1. required String? appId,
  2. String? description,
  3. int? thumbImage,
  4. bool? photoPost,
  5. bool? videoPost,
  6. bool? messagePost,
  7. bool? audioPost,
  8. bool? albumPost,
  9. bool? articlePost,
})

Implementation

FeedEntity({
  required this.appId,
  this.description,
  this.thumbImage,
  this.photoPost,
  this.videoPost,
  this.messagePost,
  this.audioPost,
  this.albumPost,
  this.articlePost,
});