IntroScreen constructor

IntroScreen({
  1. required String title,
  2. EdgeInsets headerPadding = const EdgeInsets.all(12),
  3. required String description,
  4. Widget? header,
  5. Color headerBgColor = Colors.white,
  6. TextStyle? textStyle,
  7. String? imageAsset,
})

Implementation

IntroScreen({
  required String this.title,
  this.headerPadding = const EdgeInsets.all(12),
  required String this.description,
  this.header,
  this.headerBgColor = Colors.white,
  this.textStyle,
  this.imageAsset,
});