TrimTimeline constructor

const TrimTimeline({
  1. Key? key,
  2. required VideoEditorController controller,
  3. double secondGap = 5,
  4. EdgeInsets margin = EdgeInsets.zero,
})

Show the timeline corresponding to the TrimSlider

Implementation

const TrimTimeline({
  Key? key,
  required this.controller,
  this.secondGap = 5,
  this.margin = EdgeInsets.zero,
}) : super(key: key);