IntroScreen constructor

IntroScreen({
  1. required List<OnbordingData> onbordingDataList,
  2. MaterialPageRoute? pageRoute,
  3. required List<Color> colors,
  4. Color? selectedDotColor,
  5. Color? unSelectdDotColor,
  6. Gradient? gradient,
  7. required Widget nextButton,
  8. required Widget lastButton,
  9. required Widget skipButton,
})

Implementation

IntroScreen(
    {required this.onbordingDataList,
    this.pageRoute,
    required this.colors,
    this.selectedDotColor,
    this.unSelectdDotColor,
    this.gradient,
    required this.nextButton,
    required this.lastButton,
    required this.skipButton});