CKTooltipV3 constructor

const CKTooltipV3({
  1. Key? key,
  2. required Widget child,
  3. required CKToolTipPositionV3 position,
  4. required String tooltipText,
  5. bool? showClose,
  6. VoidCallback? onCloseClick,
  7. bool? clickMaskDismiss = true,
  8. Duration? autoHiddenDuration,
  9. bool? usePenetrate = false,
  10. bool? needClick = false,
  11. VoidCallback? onChildClick,
  12. Offset? offset,
  13. List<CKTooltipModalV3>? list,
  14. double? maxWidth,
  15. ValueChanged<int>? onItemClick,
  16. VoidCallback? onDismiss,
  17. bool? useAnimation = false,
  18. InlineSpan? richContent,
  19. bool? needPositioningAngle,
  20. Color? bgColor,
  21. EdgeInsets? insets,
})

Implementation

const CKTooltipV3({
  super.key,
  required this.child,
  required this.position,
  required this.tooltipText,
  this.showClose,
  this.onCloseClick,
  this.clickMaskDismiss = true,
  this.autoHiddenDuration,
  this.usePenetrate = false,
  this.needClick = false,
  this.onChildClick,
  this.offset,
  this.list,
  this.maxWidth,
  this.onItemClick,
  this.onDismiss,
  this.useAnimation = false,
  this.richContent,
  this.needPositioningAngle,
  this.bgColor,
  this.insets,
});