CoverSelection constructor

const CoverSelection({
  1. Key? key,
  2. required VideoEditorController controller,
  3. double height = 60,
  4. int quality = 10,
  5. int quantity = 5,
})

Slider that allow to select a generated cover

Implementation

const CoverSelection({
  Key? key,
  required this.controller,
  this.height = 60,
  this.quality = 10,
  this.quantity = 5,
}) : super(key: key);