MovingCircle constructor
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,
});