InlineVideoPlayerWithControls constructor

const InlineVideoPlayerWithControls({
  1. Key? key,
  2. required InlineVideoPlayerController controller,
  3. bool showControls = true,
  4. VoidCallback? onTap,
})

Implementation

const InlineVideoPlayerWithControls({
  super.key,
  required this.controller,
  this.showControls = true,
  this.onTap,
});