ProgressTextEffect constructor
const
ProgressTextEffect({})
Creates a binary fill animation for progress indication.
duration — one full fill cycle duration.
curve — easing curve for the fill rate.
filledColor — color of filled (progressed) characters.
emptyColor — color of pending characters.
delayBetweenChars — stagger (zero for simultaneous fill).
Implementation
const ProgressTextEffect({
super.duration = const Duration(milliseconds: 1000),
super.curve = Curves.easeOut,
this.filledColor = Colors.green,
this.emptyColor = Colors.grey,
super.delayBetweenChars = Duration.zero,
});