MovingCircle constructor

const MovingCircle({
  1. Key? key,
  2. required Color color,
  3. double radius = 500,
  4. double blurSigma = 40,
})

Creates a MovingCircle widget.

The color defines the color of the circle. The radius is the radius of the circle, defaulting to 500. The blurSigma is the sigma value for the blur effect, defaulting to 40.

Implementation

const MovingCircle({
  super.key,
  required this.color,
  this.radius = 500,
  this.blurSigma = 40,
});