ZwapComplexTutorialWidget constructor

const ZwapComplexTutorialWidget({
  1. Key? key,
  2. required GlobalKey<State<StatefulWidget>> focusWidgetKey,
  3. required ZwapTutorialStepContent child,
  4. required int index,
  5. required int stepsCount,
  6. Widget focusWidgetWrapper(
    1. BuildContext context,
    2. Widget child
    )?,
  7. double? width,
  8. double? height,
  9. Color? backgroundColor,
  10. bool showBack = true,
  11. bool showEnd = false,
  12. dynamic onBack()?,
  13. dynamic onForward()?,
  14. dynamic onClose()?,
  15. bool showSkip = false,
  16. Offset overlayOffset = Offset.zero,
  17. GlobalKey<State<StatefulWidget>>? blurRegion,
  18. DecorationDirection decorationDirection = DecorationDirection.top,
  19. double decorationTranslation = 0,
  20. bool log = false,
})

Implementation

const ZwapComplexTutorialWidget({
  Key? key,
  required this.focusWidgetKey,
  required this.child,
  required this.index,
  required this.stepsCount,
  this.focusWidgetWrapper,
  this.width,
  this.height,
  this.backgroundColor,
  this.showBack = true,
  this.showEnd = false,
  this.onBack,
  this.onForward,
  this.onClose,
  this.showSkip = false,
  this.overlayOffset = Offset.zero,
  this.blurRegion,
  this.decorationDirection = DecorationDirection.top,
  this.decorationTranslation = 0,
  this.log = false,
}) : super(key: key);