IntroPage constructor

const IntroPage({
  1. Key? key,
  2. required Widget title,
  3. Widget? subtext,
  4. List<Widget> items(
    1. BuildContext
    )?,
  5. Widget body(
    1. BuildContext
    )?,
})

Implementation

const IntroPage({
  super.key,
  required this.title,
  this.subtext,
  this.items,
  this.body
});