VideoPreviewWidget constructor

const VideoPreviewWidget({
  1. Key? key,
  2. required String path,
  3. bool autoplay = true,
})

Implementation

const VideoPreviewWidget({
  super.key,
  required this.path,
  this.autoplay = true,
});