VideoFeed constructor

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. String? contentId,
  10. VideoFeedMode? mode,
  11. bool? enablePictureInPicture,
  12. double? width,
  13. double? height,
  14. bool? wantKeepAlive,
  15. VideoFeedConfiguration? videoFeedConfiguration,
  16. VideoPlayerConfiguration? videoPlayerConfiguration,
  17. AdConfiguration? adConfiguration,
  18. VideoFeedCreatedCallback? onVideoFeedCreated,
  19. VideoFeedLoadFinishedCallback? onVideoFeedLoadFinished,
  20. VideoFeedEmptyCallback? onVideoFeedEmpty,
  21. VideoFeedDidStartPictureInPictureCallback? onVideoFeedDidStartPictureInPicture,
  22. VideoFeedDidStopPictureInPictureCallback? onVideoFeedDidStopPictureInPicture,
  23. VideoFeedGetFeedIdCallback? onVideoFeedGetFeedId}
)

Implementation

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