ZwapTutorialStep constructor

ZwapTutorialStep({
  1. required ZwapTutorialStepContent content,
  2. dynamic onClose()?,
  3. double? width,
  4. double? height,
  5. Widget focusWidgetWrapper(
    1. BuildContext,
    2. Widget
    )?,
  6. Color? backgroundColor,
  7. Offset overlayOffset = Offset.zero,
  8. bool showBack = false,
  9. bool showSkip = false,
  10. DecorationDirection decorationDirection = DecorationDirection.bottom,
  11. double decorationTranslation = 0,
})

Implementation

ZwapTutorialStep({
  required this.content,
  this.onClose,
  this.width,
  this.height,
  this.focusWidgetWrapper,
  this.backgroundColor,
  this.overlayOffset = Offset.zero,
  this.showBack = false,
  this.showSkip = false,
  this.decorationDirection = DecorationDirection.bottom,
  this.decorationTranslation = 0,
});