ScrambleAnimatedText constructor
ScrambleAnimatedText(})
Implementation
ScrambleAnimatedText(
String text, {
TextAlign textAlign = TextAlign.start,
TextStyle? textStyle,
this.speed = const Duration(milliseconds: 500),
}) : super(
text: text,
textAlign: textAlign,
textStyle: textStyle,
duration: speed * text.characters.length,
);