CoverSelection constructor

const CoverSelection({
  1. Key? key,
  2. required VideoEditorController controller,
  3. double size = 60,
  4. int quality = 10,
  5. int quantity = 5,
  6. Wrap? wrap,
  7. Widget selectedCoverBuilder(
    1. Widget selectedCover,
    2. Size
    )?,
})

Slider that allow to select a generated cover

Implementation

const CoverSelection({
  super.key,
  required this.controller,
  this.size = 60,
  this.quality = 10,
  this.quantity = 5,
  this.wrap,
  this.selectedCoverBuilder,
});