IntroductionPageData constructor

const IntroductionPageData({
  1. required Map<String, String> title,
  2. required Map<String, String> content,
  3. String? contentImage,
  4. String? backgroundImage,
  5. Color? backgroundColor,
})

Implementation

const IntroductionPageData({
  required this.title,
  required this.content,
  this.contentImage,
  this.backgroundImage,
  this.backgroundColor,
});