KVideoPlayer constructor

const KVideoPlayer({
  1. Key? key,
  2. Color? themeColor,
  3. String? path,
  4. String? url,
  5. VideoPlayerController? controller,
  6. bool autoPlay = false,
  7. bool loop = false,
  8. bool showBack = false,
  9. bool showFullScreen = true,
})

Implementation

const KVideoPlayer({
  super.key,
  this.themeColor,
  this.path,
  this.url,
  this.controller,
  this.autoPlay = false,
  this.loop = false,
  this.showBack = false,
  this.showFullScreen = true,
});