FadeAnimatedText constructor
FadeAnimatedText(})
Implementation
FadeAnimatedText(
String text, {
TextAlign textAlign = TextAlign.start,
TextStyle? textStyle,
Duration duration = const Duration(milliseconds: 2000),
this.fadeInEnd = 0.5,
this.fadeOutBegin = 0.8,
}) : assert(fadeInEnd < fadeOutBegin,
'The "fadeInEnd" argument must be less than "fadeOutBegin"'),
super(
text: text,
textAlign: textAlign,
textStyle: textStyle,
duration: duration,
);