LYGradientTrackShape constructor

const LYGradientTrackShape({
  1. Color borderColor = Colors.grey,
  2. double borderWidth = 1,
  3. List<Color> trackcolors = const [Colors.green, Colors.red],
})

Implementation

const LYGradientTrackShape({
  this.borderColor = Colors.grey,
  this.borderWidth = 1,

  this.trackcolors = const [Colors.green, Colors.red],
});