MongolTooltip constructor

const MongolTooltip({
  1. Key? key,
  2. required String message,
  3. double? width,
  4. EdgeInsetsGeometry? padding,
  5. EdgeInsetsGeometry? margin,
  6. double? horizontalOffset,
  7. bool? preferRight,
  8. bool? excludeFromSemantics,
  9. Decoration? decoration,
  10. TextStyle? textStyle,
  11. Duration? waitDuration,
  12. Duration? showDuration,
  13. Widget? child,
})

Creates a Mongol tooltip.

By default, tooltips should adhere to the Material specification. If the optional constructor parameters are not defined, the values provided by TooltipTheme.of will be used if a TooltipTheme is present or specified in ThemeData.

All parameters that are defined in the constructor will override the default values and the values in TooltipTheme.of.

Implementation

const MongolTooltip({
  Key? key,
  required this.message,
  this.width,
  this.padding,
  this.margin,
  this.horizontalOffset,
  this.preferRight,
  this.excludeFromSemantics,
  this.decoration,
  this.textStyle,
  this.waitDuration,
  this.showDuration,
  this.child,
}) : super(key: key);