NormalVideoPlayer constructor

const NormalVideoPlayer({
  1. Key? key,
  2. required String videoSource,
  3. bool isFile = false,
  4. Uint8List? videoBytes,
  5. PlayerStyleConfig? styling,
  6. PlayerTextConfig? messages,
  7. PlayerVisibilityConfig? visibility,
  8. PlayerPlaybackConfig? playback,
})

Implementation

const NormalVideoPlayer({
  super.key,
  required this.videoSource,
  this.isFile = false,
  this.videoBytes,
  this.styling,
  this.messages,
  this.visibility,
  this.playback,
});