TooltipThemeModifier constructor
const
TooltipThemeModifier({
- Key? key,
- Widget? child,
- Key? modifierKey,
- required TooltipThemeData data,
Creates a tooltip theme that controls the configurations for Tooltip.
The data argument must not be null.
Implementation
const TooltipThemeModifier({
super.key,
super.child,
super.modifierKey,
required this.data,
});