AntdTour constructor

const AntdTour({
  1. Key? key,
  2. AntdTourStyle? style,
  3. AntdStyleBuilder<AntdTourStyle, AntdTour>? styleBuilder,
  4. VoidCallback? onClosed,
  5. VoidCallback? onOpened,
  6. VoidCallback? onMaskTap,
  7. AntdMaskBuilder<AntdTourState>? builder,
  8. AntdMaskOpacity? opacity = AntdMaskOpacity.thin,
  9. bool? dismissOnMaskTap = true,
  10. bool? showMask = true,
  11. required Widget child,
  12. AntdTourController? controller,
  13. AntdTourAnimation? animation,
})

Implementation

const AntdTour({
  super.key,
  super.style,
  super.styleBuilder,
  super.onClosed,
  super.onOpened,
  super.onMaskTap,
  super.builder,
  super.opacity = AntdMaskOpacity.thin,
  super.dismissOnMaskTap = true,
  super.showMask = true,
  required this.child,
  this.controller,
  this.animation,
});