FeedItemDetails constructor

FeedItemDetails({
  1. int? index,
  2. required String id,
  3. double? duration,
  4. String? title,
  5. required VideoFeedSource source,
  6. String? channel,
  7. String? playlist,
  8. String? playlistGroup,
  9. VideoType? videoType,
  10. LiveStreamStatus? liveStreamStatus,
  11. Map<String, List<String>>? dynamicContentParameters,
  12. String? hashtagFilterExpression,
})

Implementation

FeedItemDetails({
  this.index,
  required this.id,
  this.duration,
  this.title,
  required this.source,
  this.channel,
  this.playlist,
  this.playlistGroup,
  this.videoType,
  this.liveStreamStatus,
  this.dynamicContentParameters,
  this.hashtagFilterExpression,
});