GuideStep constructor

GuideStep({
  1. required GlobalKey<State<StatefulWidget>> targetKey,
  2. required String title,
  3. required String description,
  4. Widget? customContent,
  5. EdgeInsets tooltipPadding = const EdgeInsets.all(16),
  6. Color? backgroundColor,
  7. double borderRadius = 8.0,
  8. bool showSkipButton = true,
})

Implementation

GuideStep({
  required this.targetKey,
  required this.title,
  required this.description,
  this.customContent,
  this.tooltipPadding = const EdgeInsets.all(16),
  this.backgroundColor,
  this.borderRadius = 8.0,
  this.showSkipButton = true,
});