IntroPageData constructor

IntroPageData(
  1. {required String title,
  2. required String description,
  3. String? image,
  4. String? backgroundImage,
  5. bool showSkip = true,
)

Implementation

IntroPageData({
  required this.title,
  required this.description,
  this.image,
  this.backgroundImage,
  this.showSkip = true,
  this.showLogo = false,
});