DefTooltipType constructor

DefTooltipType({
  1. Key? key,
  2. required String message,
  3. required double height,
  4. bool? ignorePointer,
  5. Color? triangleColor,
  6. EdgeInsetsGeometry? padding,
  7. EdgeInsetsGeometry? margin,
  8. Decoration? decoration,
  9. TextStyle? textStyle,
  10. required Animation<double> animation,
  11. required Offset target,
  12. required double allOffset,
  13. required PreferOrientation preferOri,
  14. required OverlayEntry entry,
  15. required Size targetSize,
  16. required Function customDismiss,
})

Implementation

DefTooltipType(
    {Key? key,
    required this.message,
    required this.height,
    bool? ignorePointer,
    this.triangleColor,
    this.padding,
    this.margin,
    this.decoration,
    this.textStyle,
    required this.animation,
    required this.target,
    required this.allOffset,
    required this.preferOri,
    required this.entry,
    required this.targetSize,
    required this.customDismiss})
    : ignorePointer = ignorePointer ?? false;