QudsSplashView constructor

const QudsSplashView({
  1. Key? key,
  2. List<Future>? futures,
  3. Duration durationAfterExecutionFutures = const Duration(seconds: 1),
  4. Widget? progressIndicator,
  5. TextStyle? textUnderLogoStyle,
  6. Function? onCompleted,
  7. bool? showIndicator = true,
})

Create an instance of QudsSplashView

Implementation

const QudsSplashView(
    {Key? key,
    this.futures,
    this.durationAfterExecutionFutures = const Duration(seconds: 1),
    this.progressIndicator,
    this.logo,
    this.textUnderLogo,
    this.textUnderLogoStyle,
    this.onCompleted,
    this.showIndicator = true})
    : super(key: key);