JkVideoPlaylistPlayer constructor

const JkVideoPlaylistPlayer({
  1. Key? key,
  2. required List<String> playlist,
  3. bool isLooping = false,
  4. bool autoplay = true,
  5. bool isTV = false,
  6. Color? bgColor,
  7. PanelController? panelController,
  8. bool showFullscreenButton = true,
  9. bool showClosedCaptionButton = false,
  10. bool showVolumeButton = true,
})

Implementation

const JkVideoPlaylistPlayer({
  super.key,
  required this.playlist,
  this.isLooping = false,
  this.autoplay = true,
  this.isTV = false,
  this.bgColor,
  this.panelController,
  this.showFullscreenButton = true,
  this.showClosedCaptionButton = false,
  this.showVolumeButton = true,
});