FTooltipGroup constructor

const FTooltipGroup({
  1. required Widget child,
  2. FTooltipStyleDelta style = const .context(),
  3. Duration activeDuration = const Duration(milliseconds: 300),
  4. bool hover = true,
  5. bool longPress = true,
  6. Key? key,
})

Creates a tooltip group.

Implementation

const FTooltipGroup({
  required this.child,
  this.style = const .context(),
  this.activeDuration = const Duration(milliseconds: 300),
  this.hover = true,
  this.longPress = true,
  super.key,
});