JkVideoPlaylistPlayer constructor

const JkVideoPlaylistPlayer({
  1. Key? key,
  2. required List<String> playlist,
  3. bool isLooping = false,
  4. bool autoplay = true,
})

Implementation

const JkVideoPlaylistPlayer({
  super.key,
  required this.playlist,
  this.isLooping = false,
  this.autoplay = true,
});