NeonSquareVerticesProgressBar constructor

const NeonSquareVerticesProgressBar({
  1. Key? key,
  2. List<Color> spreadColorsList = squareColors,
  3. double pointSize = 5,
  4. double lightBlurRadius = 80,
  5. double lightSpreadRadius = 40,
  6. bool randomFlicker = false,
  7. int flickerTimeInMilliSeconds = 500,
  8. bool flicker = false,
  9. double progressBarRadius = 60,
})

Implementation

const NeonSquareVerticesProgressBar(
    {Key? key,
    this.spreadColorsList = squareColors,
    this.pointSize = 5,
    this.lightBlurRadius = 80,
    this.lightSpreadRadius = 40,
    this.randomFlicker = false,
    this.flickerTimeInMilliSeconds = 500,
    this.flicker = false,
    this.progressBarRadius = 60})
    : super(key: key);