VideoItemPlayer constructor

const VideoItemPlayer({
  1. required String videoUrl,
  2. bool isLive = false,
  3. bool isSettingsEnabled = true,
  4. Key? key,
})

Implementation

const VideoItemPlayer({
  required this.videoUrl,
  this.isLive = false,
  this.isSettingsEnabled = true,
  super.key,
});