TrimSliderStyle constructor

TrimSliderStyle({
  1. Color? background,
  2. Color positionLineColor = Colors.red,
  3. double positionLineWidth = 2,
  4. Color lineColor = Colors.white,
  5. double lineWidth = 2,
  6. Color iconColor = Colors.black,
  7. double circleSize = 8,
  8. double iconSize = 25,
  9. IconData? leftIcon = Icons.arrow_left,
  10. IconData? rightIcon = Icons.arrow_right,
})

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);