FadeAnimatedSplashScreenText constructor
FadeAnimatedSplashScreenText(})
Marks the beginning of fade-out interval, default value = 0.8
Implementation
FadeAnimatedSplashScreenText(
String text, {
TextAlign textAlign = TextAlign.start,
TextStyle? textStyle,
Duration duration = const Duration(milliseconds: 2000),
this.fadeInEnd = 0.5,
}) : super(
text: text,
textAlign: textAlign,
textStyle: textStyle,
duration: duration,
);