WebVideoPlayer constructor

const WebVideoPlayer({
  1. Key? key,
  2. String? url,
  3. String? path,
  4. bool autoPlay = false,
  5. bool isFullscreen = false,
  6. VideoPlayerController? videoController,
  7. Duration? seekDuration,
})

Creates a new web video player instance.

Implementation

const WebVideoPlayer({
  Key? key,
  this.url,
  this.path,
  this.autoPlay = false,
  this.isFullscreen = false,
  this.videoController,
  this.seekDuration,
}) : super(key: key);