ArnaTooltip constructor

const ArnaTooltip({
  1. Key? key,
  2. String? message,
  3. InlineSpan? richMessage,
  4. bool? preferBelow,
  5. bool? excludeFromSemantics,
  6. bool enableFeedback = true,
  7. ArnaTooltipTriggeredCallback? onTriggered,
  8. required Widget child,
})

Creates a tooltip. Only one of message and richMessage may be non-null.

Implementation

const ArnaTooltip({
  super.key,
  this.message,
  this.richMessage,
  this.preferBelow,
  this.excludeFromSemantics,
  this.enableFeedback = true,
  this.onTriggered,
  required this.child,
});