CirclesPainter constructor

CirclesPainter(
  1. double animationValue, {
  2. required Color color,
  3. double blurSigma = 30,
})

Constructor for the CirclesPainter.

The animationValue represents the current value of the animation (0.0 to 1.0). The color is the color of the circle, and blurSigma is the sigma value for the blur effect.

Implementation

CirclesPainter(this.animationValue, {required this.color, this.blurSigma = 30});