TrimTimeline constructor

const TrimTimeline({
  1. Key? key,
  2. required VideoEditorController controller,
  3. int quantity = 8,
  4. EdgeInsets padding = EdgeInsets.zero,
  5. String localSeconds = 's',
  6. TextStyle? textStyle,
})

Show the timeline corresponding to the TrimSlider

Implementation

const TrimTimeline({
  super.key,
  required this.controller,
  this.quantity = 8,
  this.padding = EdgeInsets.zero,
  this.localSeconds = 's',
  this.textStyle,
});