TooltipTheme constructor

const TooltipTheme({
  1. Key? key,
  2. required TooltipThemeData data,
  3. required Widget child,
})

Creates a tooltip theme that controls the configurations for Tooltip.

Implementation

const TooltipTheme({
  Key? key,
  required this.data,
  required Widget child,
}) : super(key: key, child: child);