IntroScreen constructor

const IntroScreen({
  1. Key? key,
  2. required List<Walkthrough> walkthroughList,
  3. required MaterialPageRoute pageRoute,
})

Implementation

const IntroScreen({
  super.key,
  required this.walkthroughList,
  required this.pageRoute,
});