FeedModel constructor

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

Implementation

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