TutorialStep constructor

TutorialStep({
  1. GlobalKey<State<StatefulWidget>>? widgetKey,
  2. required Widget child,
  3. Widget? indicator,
  4. double? indicatorHeight,
  5. double? indicatorWidth,
  6. bool? showAbove,
  7. EdgeInsets? focusOverlayPadding,
})

Implementation

TutorialStep({
  this.widgetKey,
  required this.child,
  this.indicator,
  this.indicatorHeight,
  this.indicatorWidth,
  this.showAbove,
  this.focusOverlayPadding,
});