IntroScreenOnboarding constructor

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

Implementation

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