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. String? hashtagFilterExpression,
  8. List<String>? productIds,
  9. VideoFeedMode? mode,
  10. bool? enablePictureInPicture,
  11. double? width,
  12. double? height,
  13. VideoFeedConfiguration? videoFeedConfiguration,
  14. VideoPlayerConfiguration? videoPlayerConfiguration,
  15. AdConfiguration? adConfiguration,
  16. VideoFeedLoadFinishedCallback? onVideoFeedLoadFinished,
  17. VideoFeedCreatedCallback? onVideoFeedCreated}
)

Implementation

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