Walkthrough constructor

const Walkthrough({
  1. Key? key,
  2. dynamic title,
  3. dynamic content,
  4. dynamic imageIcon,
  5. dynamic imageColor = Colors.redAccent,
})

Implementation

const Walkthrough({
  super.key,
  this.title,
  this.content,
  this.imageIcon,
  this.imageColor = Colors.redAccent,
});