FeedItemDetails constructor Null safety

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. Map<String, List<String>>? dynamicContentParameters}
)

Implementation

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