MeTooltip constructor

const MeTooltip({
  1. Key? key,
  2. Widget? child,
  3. TooltipBase tooltipChild(
    1. DefTooltipType
    )?,
  4. Color? triangleColor,
  5. bool? ignorePointer,
  6. String? message,
  7. double? allOffset,
  8. PreferOrientation? preferOri,
  9. double? height,
  10. EdgeInsetsGeometry? margin,
  11. EdgeInsetsGeometry? padding,
  12. bool? excludeFromSemantics,
  13. BoxDecoration? decoration,
  14. TextStyle? textStyle,
  15. bool openMouseEvent = true,
  16. Duration? showDuration,
  17. Duration? waitDuration,
  18. bool? isShow,
})

Implementation

const MeTooltip(
    {Key? key,
    this.child,
    this.tooltipChild,
    this.triangleColor,
    this.ignorePointer,
    this.message,
    this.allOffset,
    this.preferOri,
    this.height,
    this.margin,
    this.padding,
    this.excludeFromSemantics,
    this.decoration,
    this.textStyle,
    this.openMouseEvent = true,
    this.showDuration,
    this.waitDuration,
    bool? isShow})
    : super(key: key);