VideoPlayerWidget constructor

const VideoPlayerWidget({
  1. Key? key,
  2. required VideoData video,
  3. VoidCallback? onClose,
  4. bool showCloseButton = true,
})

Implementation

const VideoPlayerWidget({
  super.key,
  required this.video,
  this.onClose,
  this.showCloseButton = true,
});