TypewriterAnimatedText constructor
TypewriterAnimatedText(})
Implementation
TypewriterAnimatedText(
String text, {
super.textAlign,
super.textStyle,
this.speed = const Duration(milliseconds: 30),
this.curve = Curves.linear,
this.cursor = '_',
}) : super(
text: text,
duration: speed * (text.characters.length + extraLengthForBlinks),
);