CoverViewer constructor

const CoverViewer({
  1. Key? key,
  2. required VideoEditorController controller,
  3. String noCoverText = 'No selection',
})

It is the viewer that show the selected cover

Implementation

const CoverViewer({
  super.key,
  required this.controller,
  this.noCoverText = 'No selection',
});