SplashPage constructor

SplashPage({
  1. Key? key,
  2. bool? showLoading = true,
  3. String? forceUpdatePageRouteName,
  4. String? permissionPageRouteName,
  5. String? loginPageRouteName,
  6. String? introPageRouteName,
  7. String? onBoardingPageRouteName,
  8. required String contentsPageRouteName,
  9. required Widget widget,
  10. Color? color,
  11. required ISplashViewModel viewModel,
})

Implementation

SplashPage({
  Key? key,
  this.showLoading = true,
  this.forceUpdatePageRouteName,
  this.permissionPageRouteName,
  this.loginPageRouteName,
  this.introPageRouteName,
  this.onBoardingPageRouteName,
  required this.contentsPageRouteName,
  required this.widget,
  this.color,
  required ISplashViewModel viewModel,
}) : super(key: key, viewModel: viewModel);