FTooltipGroup constructor

const FTooltipGroup({
  1. required Widget child,
  2. Duration activeDuration = const Duration(milliseconds: 300),
  3. bool hover = true,
  4. Duration hoverEnterDuration = defaultHoverEnterDuration,
  5. Duration hoverExitDuration = defaultHoverExitDuration,
  6. bool longPress = true,
  7. Duration longPressExitDuration = defaultLongPressExitDuration,
  8. Key? key,
})

Creates a tooltip group.

Implementation

const FTooltipGroup({
  required this.child,
  this.activeDuration = const Duration(milliseconds: 300),
  this.hover = true,
  this.hoverEnterDuration = defaultHoverEnterDuration,
  this.hoverExitDuration = defaultHoverExitDuration,
  this.longPress = true,
  this.longPressExitDuration = defaultLongPressExitDuration,
  super.key,
});