AnimatedSplash constructor

AnimatedSplash({
  1. Key? key,
  2. required Widget child,
  3. required Transition type,
  4. Curve curve = Curves.ease,
  5. dynamic animation,
  6. required Widget navigator,
  7. dynamic durationInSeconds,
  8. Color backgroundColor = Colors.white,
})

Implementation

AnimatedSplash({
  Key? key,
  required this.child,
  required this.type,
  this.curve = Curves.ease,
  this.animation,
  required this.navigator,
  this.durationInSeconds,
  this.backgroundColor = Colors.white,
}) : super(key: key);