ActerVideoPlayer constructor

const ActerVideoPlayer({
  1. dynamic key,
  2. required File videoFile,
  3. dynamic onTapFullScreen,
  4. bool? hasPlayerControls = true,
})

Implementation

const ActerVideoPlayer({
  super.key,
  required this.videoFile,
  this.onTapFullScreen,
  this.hasPlayerControls = true,
});