VerticalFeedGroup constructor

VerticalFeedGroup({
  1. required String id,
  2. required String title,
  3. required int index,
  4. required bool seen,
  5. required String? iconUrl,
  6. required List<VerticalFeedItem> feedList,
  7. required bool pinned,
  8. required int type,
  9. required bool nudge,
  10. String? name,
})

Implementation

VerticalFeedGroup({
  required this.id,
  required this.title,
  required this.index,
  required this.seen,
  required this.iconUrl,
  required this.feedList,
  required this.pinned,
  required this.type,
  required this.nudge,
  this.name,
});