CustomVideoPlayerWithControls constructor

const CustomVideoPlayerWithControls({
  1. Key? key,
  2. required VideoPlayerController controller,
  3. double? width,
  4. double? height,
})

Implementation

const CustomVideoPlayerWithControls({
  super.key,
  required this.controller,
  this.width,
  this.height,
});