VideoViewer constructor

const VideoViewer({
  1. Key? key,
  2. required VideoEditorController? controller,
  3. Widget? child,
})

Implementation

const VideoViewer({
  Key? key,
  required this.controller,
  this.child,
}) : super(key: key);