IntroductionScreen constructor

const IntroductionScreen({
  1. required IntroductionOptions options,
  2. required VoidCallback onComplete,
  3. Key? key,
  4. ScrollPhysics? physics,
  5. void onNext(
    1. IntroductionPage
    )?,
  6. void onPrevious(
    1. IntroductionPage
    )?,
  7. VoidCallback? onSkip,
})

Implementation

const IntroductionScreen({
  required this.options,
  required this.onComplete,
  super.key,
  this.physics,
  this.onNext,
  this.onPrevious,
  this.onSkip,
});