TrimSliderStyle constructor
TrimSliderStyle({})
Style for TrimSlider. It's use on VideoEditorController
Implementation
TrimSliderStyle({
Color? background,
this.positionLineColor = Colors.red,
this.positionLineWidth = 2,
this.lineColor = Colors.white,
this.lineWidth = 2,
this.iconColor = Colors.black,
this.circleSize = 8,
this.iconSize = 25,
this.leftIcon = Icons.arrow_left,
this.rightIcon = Icons.arrow_right,
}) : background = background ?? Colors.black.withOpacity(0.6);