CustomVideoPlayerControls constructor

const CustomVideoPlayerControls({
  1. Key? key,
  2. required VideoPlayerController videoPlayerController,
  3. dynamic fullScreen()?,
  4. required bool isFullScreen,
  5. void onPlayToggle(
    1. bool isPaused
    )?,
  6. bool isLive = false,
  7. void onSettingsTap()?,
  8. bool? isSettingsEnabled,
})

Implementation

const CustomVideoPlayerControls({
  super.key,
  required this.videoPlayerController,
  this.fullScreen,
  required this.isFullScreen,
  this.onPlayToggle,
  this.isLive = false,
  this.onSettingsTap,
  this.isSettingsEnabled,
});