VerticalFeedItem constructor

VerticalFeedItem({
  1. required String id,
  2. required String title,
  3. required int index,
  4. required bool seen,
  5. required int currentTime,
  6. String? previewUrl,
  7. String? actionUrl,
  8. List<STRProductItem>? actionProducts,
  9. String? name,
  10. List<VerticalFeedItemComponent?>? verticalFeedItemComponentList,
})

Implementation

VerticalFeedItem(
    {required this.id,
    required this.title,
    required this.index,
    required this.seen,
    required this.currentTime,
    this.previewUrl,
    this.actionUrl,
    this.actionProducts,
    this.name,
    this.verticalFeedItemComponentList});