StartUserStoryConfiguration constructor

const StartUserStoryConfiguration({
  1. Widget splashScreenBuilder(
    1. BuildContext context,
    2. dynamic onFinish()
    )?,
  2. Widget introductionBuilder(
    1. BuildContext context,
    2. Widget introductionPage
    )?,
  3. IntroductionOptions introductionOptionsBuilder(
    1. BuildContext context
    )?,
  4. IntroductionService? introductionService,
  5. String? homeScreenRoute,
  6. Widget? introductionFallbackScreen,
  7. ScrollPhysics? introductionScrollPhysics,
  8. bool showIntroduction = true,
  9. bool useKillswitch = false,
  10. int minimumSplashScreenDuration = 3,
  11. Future<String?> splashScreenFuture(
    1. BuildContext context
    )?,
  12. WidgetBuilder? splashScreenCenterWidget,
  13. Color? splashScreenBackgroundColor = const Color(0xff212121),
  14. bool canPopFromIntroduction = true,
  15. KillswitchService? killswitchService,
  16. bool showSplashScreen = true,
})

Creates a new instance of StartUserStoryConfiguration.

Implementation

const StartUserStoryConfiguration({
  this.splashScreenBuilder,
  this.introductionBuilder,
  this.introductionOptionsBuilder,
  this.introductionService,
  this.homeScreenRoute,
  this.introductionFallbackScreen,
  this.introductionScrollPhysics,
  this.showIntroduction = true,
  this.useKillswitch = false,
  this.minimumSplashScreenDuration = 3,
  this.splashScreenFuture,
  this.splashScreenCenterWidget,
  this.splashScreenBackgroundColor = const Color(0xff212121),
  this.canPopFromIntroduction = true,
  this.killswitchService,
  this.showSplashScreen = true,
});