UnderlineEffect constructor
const
UnderlineEffect({})
Creates an underline drawing animation.
duration — animation cycle duration per character.
curve — easing curve for underline draw.
lineColor — underline color (null = text color).
height — underline thickness in pixels.
delayBetweenChars — stagger delay between characters.
Implementation
const UnderlineEffect({
super.duration = const Duration(milliseconds: 600),
super.curve = Curves.easeOut,
this.lineColor,
this.height = 2.0,
super.delayBetweenChars = const Duration(milliseconds: 30),
});