ScaleAnimatedText constructor
ScaleAnimatedText(})
Implementation
ScaleAnimatedText(
String text, {
TextAlign textAlign = TextAlign.start,
TextStyle? textStyle,
Duration duration = const Duration(milliseconds: 2000),
this.scalingFactor = 0.5,
}) : super(
text: text,
textAlign: textAlign,
textStyle: textStyle,
duration: duration,
);