SecondSplash constructor

const SecondSplash({
  1. Key? key,
  2. @required Widget? next,
  3. Widget? child,
  4. Decoration? decoration,
  5. SplashController? controller,
  6. SystemUiOverlayStyle? systemUiOverlayStyle,
})

Implementation

const SecondSplash({
  Key? key,
  @required this.next,
  this.child,
  this.decoration,
  this.controller,
  this.systemUiOverlayStyle,
}) : super(key: key);