FeedFrontModel constructor

FeedFrontModel({
  1. required String documentID,
  2. required String appId,
  3. String? description,
  4. FeedModel? feed,
  5. BackgroundModel? backgroundOverridePosts,
  6. BackgroundModel? backgroundOverrideProfile,
  7. StorageConditionsModel? conditions,
})

Implementation

FeedFrontModel({
  required this.documentID,
  required this.appId,
  this.description,
  this.feed,
  this.backgroundOverridePosts,
  this.backgroundOverrideProfile,
  this.conditions,
});