IntroPageViewRF constructor

IntroPageViewRF({
  1. Color? pageColor,
  2. String? iconImageAssetPath,
  3. Color bubbleBackgroundColor = Colors.pinkAccent,
  4. Color? iconColor,
  5. @required Widget? title,
  6. @required Widget? body,
  7. @required Widget? mainImage,
  8. Widget? bubble,
  9. TextStyle? textStyle,
  10. TextStyle? titleTextStyle,
  11. TextStyle? bodyTextStyle,
})

Implementation

IntroPageViewRF({
  this.pageColor,
  this.iconImageAssetPath,
  this.bubbleBackgroundColor = Colors.pinkAccent,
  this.iconColor,
  @required this.title,
  @required this.body,
  @required this.mainImage,
  this.bubble,
  this.textStyle,
  this.titleTextStyle,
  this.bodyTextStyle,
});