GlowEffect constructor
const
GlowEffect({})
Creates a pulsing glow animation.
duration — one full glow pulse duration.
curve — easing curve for the pulse.
blurMin — minimum blur sigma at trough.
blurMax — maximum blur sigma at peak.
opacityMin — minimum opacity at trough.
opacityMax — maximum opacity at peak.
glowColor — optional color tint while glowing.
delayBetweenChars — stagger (zero for simultaneous glow).
Implementation
const GlowEffect({
super.duration = const Duration(milliseconds: 1500),
super.curve = Curves.easeInOut,
this.blurMin = 3.0,
this.blurMax = 12.0,
this.opacityMin = 0.6,
this.opacityMax = 1.0,
this.glowColor,
super.delayBetweenChars = Duration.zero,
});