CustomTrackShape constructor

CustomTrackShape({
  1. double activeTrackHeight = 4.0,
  2. double inactiveTrackHeight = 4.0,
  3. double borderWidth = 1.0,
  4. required double thumbSize,
  5. Color borderColor = const Color(0xff656566),
})

Implementation

CustomTrackShape(
    {this.activeTrackHeight = 4.0,
    this.inactiveTrackHeight = 4.0,
    this.borderWidth = 1.0,
    required this.thumbSize,
    this.borderColor = const Color(0xff656566)});