CodeNestToolTip constructor

const CodeNestToolTip({
  1. Key? key,
  2. required String message,
  3. required Widget child,
  4. TextStyle? textStyle,
  5. Color? tooltipColor,
  6. double? verticalOffset,
  7. EdgeInsetsGeometry? padding,
  8. Duration? waitDuration,
  9. Duration? showDuration,
  10. bool? preferBelow,
  11. Decoration? decoration,
  12. double? height,
  13. double? margin,
})

Implementation

const CodeNestToolTip({
  super.key,
  required this.message,
  required this.child,
  this.textStyle,
  this.tooltipColor,
  this.verticalOffset,
  this.padding,
  this.waitDuration,
  this.showDuration,
  this.preferBelow,
  this.decoration,
  this.height,
  this.margin,
});