TextEffect constructor
const
TextEffect({})
Creates a TextEffect with configurable timing.
duration — total animation cycle time per character.
curve — easing curve applied to animation timing.
delayBetweenChars — stagger offset between successive characters.
Implementation
const TextEffect({
this.duration = const Duration(milliseconds: 1000),
this.curve = Curves.easeInOut,
this.delayBetweenChars = Duration.zero,
});