VideoFeed constructor Null safety

const VideoFeed(
  1. {Key? key,
  2. required VideoFeedSource source,
  3. String? channel,
  4. String? playlist,
  5. String? playlistGroup,
  6. Map<String, List<String>>? dynamicContentParameters,
  7. VideoFeedMode mode = VideoFeedMode.row,
  8. double? width,
  9. double? height,
  10. VideoFeedConfiguration? videoFeedConfiguration,
  11. VideoPlayerConfiguration? videoPlayerConfiguration,
  12. AdConfiguration? adConfiguration,
  13. VideoFeedLoadFinishedCallback? onVideoFeedLoadFinished,
  14. VideoFeedCreatedCallback? onVideoFeedCreated}
)

Implementation

const VideoFeed({
  Key? key,
  required this.source,
  this.channel,
  this.playlist,
  this.playlistGroup,
  this.dynamicContentParameters,
  this.mode = VideoFeedMode.row,
  this.width,
  this.height,
  this.videoFeedConfiguration,
  this.videoPlayerConfiguration,
  this.adConfiguration,
  this.onVideoFeedLoadFinished,
  this.onVideoFeedCreated,
}) : super(key: key);