TooltipThemeData constructor

const TooltipThemeData(
  1. {double? height,
  2. EdgeInsetsGeometry? padding,
  3. EdgeInsetsGeometry? margin,
  4. double? verticalOffset,
  5. bool? preferBelow,
  6. bool? excludeFromSemantics,
  7. Decoration? decoration,
  8. TextStyle? textStyle,
  9. TextAlign? textAlign,
  10. Duration? waitDuration,
  11. Duration? showDuration,
  12. Duration? exitDuration,
  13. TooltipTriggerMode? triggerMode,
  14. bool? enableFeedback}
)

Creates the set of properties used to configure Tooltips.

Implementation

const TooltipThemeData({
  this.height,
  this.padding,
  this.margin,
  this.verticalOffset,
  this.preferBelow,
  this.excludeFromSemantics,
  this.decoration,
  this.textStyle,
  this.textAlign,
  this.waitDuration,
  this.showDuration,
  this.exitDuration,
  this.triggerMode,
  this.enableFeedback,
});