ShowcasePresentation constructor

const ShowcasePresentation({
  1. required Widget container,
  2. required Color overlayColor,
  3. required double overlayOpacity,
  4. required ShapeBorder targetShapeBorder,
  5. required BorderRadius? targetBorderRadius,
  6. required EdgeInsets targetPadding,
  7. required Color targetGlowColor,
  8. required double targetGlowWidth,
  9. required TooltipPosition? tooltipPosition,
  10. required bool showArrow,
  11. required Color arrowColor,
  12. required Color? arrowBorderColor,
  13. required double arrowBorderWidth,
  14. required double arrowSize,
  15. required double targetTooltipGap,
  16. required bool disableBarrierInteraction,
  17. double toolTipMargin = 14,
  18. bool? enableAutoScroll,
})

Implementation

const ShowcasePresentation({
  required this.container,
  required this.overlayColor,
  required this.overlayOpacity,
  required this.targetShapeBorder,
  required this.targetBorderRadius,
  required this.targetPadding,
  required this.targetGlowColor,
  required this.targetGlowWidth,
  required this.tooltipPosition,
  required this.showArrow,
  required this.arrowColor,
  required this.arrowBorderColor,
  required this.arrowBorderWidth,
  required this.arrowSize,
  required this.targetTooltipGap,
  required this.disableBarrierInteraction,
  this.toolTipMargin = 14,
  this.enableAutoScroll,
});