IntroductionScreen constructor
- required IntroductionOptions options,
- required VoidCallback onComplete,
- Key? key,
- ScrollPhysics? physics,
- void onNext()?,
- void onPrevious()?,
- VoidCallback? onSkip,
Implementation
const IntroductionScreen({
  required this.options,
  required this.onComplete,
  super.key,
  this.physics,
  this.onNext,
  this.onPrevious,
  this.onSkip,
});