CKTooltipWidgetV3 constructor

const CKTooltipWidgetV3({
  1. Key? key,
  2. required String text,
  3. double? tooltipMaxWidth = 250,
  4. required CKToolTipPositionV3 position,
  5. required double targetWidth,
  6. bool? showClose = false,
  7. VoidCallback? onCloseClick,
  8. List<CKTooltipModalV3>? list,
  9. ValueChanged<int>? onItemClick,
  10. bool needPositioningAngle = false,
  11. Offset? targetOffset,
  12. Size? targetSize,
  13. Offset? selfOffset,
  14. Size? selfSize,
  15. Offset? offset,
  16. InlineSpan? richContent,
  17. Widget? bottomWidget,
  18. Color? bgColor,
  19. EdgeInsets? insets,
})

Implementation

const CKTooltipWidgetV3({
  super.key,
  required this.text,
  this.tooltipMaxWidth = 250,
  required this.position,
  required this.targetWidth,
  this.showClose = false,
  this.onCloseClick,
  this.list,
  this.onItemClick,
  this.needPositioningAngle = false,
  this.targetOffset,
  this.targetSize,
  this.selfOffset,
  this.selfSize,
  this.offset,
  this.richContent,
  this.bottomWidget,
  this.bgColor,
  this.insets,
});