IntroScreenOnboarding constructor

IntroScreenOnboarding({
  1. Key? key,
  2. List<Introduction>? introductionList,
  3. dynamic onTapSkipButton()?,
  4. Color? backgroudColor,
  5. Color? foregroundColor,
  6. TextStyle? skipTextStyle = const TextStyle(fontSize: 20),
})

Implementation

IntroScreenOnboarding({
  Key? key,
  this.introductionList,
  this.onTapSkipButton,
  this.backgroudColor,
  this.foregroundColor,
  this.skipTextStyle = const TextStyle(fontSize: 20),
}) : super(key: key);