SplashViewPage constructor

SplashViewPage({
  1. Key? key,
  2. Gradient? backgroundGradient,
  3. Color? backgroundColor,
  4. Color? poweredByColor,
  5. required Widget? child,
  6. double? fadingBegin,
  7. double? fadingEnd,
  8. int? animationDurationInMilliseconds,
  9. int? afterAnimationDurationInMilliseconds,
  10. bool? reverseAnimation,
  11. required dynamic afterAnimationIsDone()?,
  12. String? textFontFamily,
})

Implementation

SplashViewPage(
    {super.key,
    this.backgroundGradient,
    this.backgroundColor,
    this.poweredByColor,
    required this.child,
    this.fadingBegin,
    this.fadingEnd,
    this.animationDurationInMilliseconds,
    this.afterAnimationDurationInMilliseconds,
    this.reverseAnimation,
    required this.afterAnimationIsDone,
    this.textFontFamily});