VideoFullScreen constructor

const VideoFullScreen({
  1. Key? key,
  2. required VideoPlayerController videoPlayerController,
  3. bool isLive = false,
  4. void onSettingsTap()?,
})

Implementation

const VideoFullScreen({
  super.key,
  required this.videoPlayerController,
  this.isLive = false,
  this.onSettingsTap,
});