FullscreenYoutubePlayer constructor

const FullscreenYoutubePlayer({
  1. Key? key,
  2. required String videoId,
  3. double? startSeconds,
  4. double? endSeconds,
  5. Set<Factory<OneSequenceGestureRecognizer>> gestureRecognizers = const <Factory<OneSequenceGestureRecognizer>>{},
  6. Color? backgroundColor,
})

Creates an instance of FullscreenYoutubePlayer.

Implementation

const FullscreenYoutubePlayer({
  super.key,
  required this.videoId,
  this.startSeconds,
  this.endSeconds,
  this.gestureRecognizers = const <Factory<OneSequenceGestureRecognizer>>{},
  this.backgroundColor,
});