AtomicTooltip constructor

const AtomicTooltip({
  1. Key? key,
  2. required Widget child,
  3. required String message,
  4. String? richMessage,
  5. InlineSpan? textSpan,
  6. EdgeInsetsGeometry? padding,
  7. EdgeInsetsGeometry? margin,
  8. double? verticalOffset,
  9. bool preferBelow = true,
  10. bool excludeFromSemantics = false,
  11. Decoration? decoration,
  12. TextStyle? textStyle,
  13. TextAlign? textAlign,
  14. Duration? waitDuration,
  15. Duration? showDuration,
  16. TooltipTriggerMode? triggerMode,
  17. bool? enableTapToDismiss,
  18. bool? enableFeedback,
  19. AtomicTooltipVariant variant = AtomicTooltipVariant.standard,
})

Implementation

const AtomicTooltip({
  super.key,
  required this.child,
  required this.message,
  this.richMessage,
  this.textSpan,
  this.padding,
  this.margin,
  this.verticalOffset,
  this.preferBelow = true,
  this.excludeFromSemantics = false,
  this.decoration,
  this.textStyle,
  this.textAlign,
  this.waitDuration,
  this.showDuration,
  this.triggerMode,
  this.enableTapToDismiss,
  this.enableFeedback,
  this.variant = AtomicTooltipVariant.standard,
});