HintTheme constructor

const HintTheme({
  1. required Color tooltipBackground,
  2. required Color tooltipForeground,
  3. required Color scrimColor,
  4. required BorderRadius tooltipRadius,
  5. required EdgeInsets tooltipPadding,
  6. TextStyle? tooltipTitleStyle,
  7. TextStyle? tooltipDescriptionStyle,
  8. bool showTail = true,
  9. ImageFilter? imageFilter,
  10. bool showPulse = false,
})

Implementation

const HintTheme({
  required this.tooltipBackground,
  required this.tooltipForeground,
  required this.scrimColor,
  required this.tooltipRadius,
  required this.tooltipPadding,
  this.tooltipTitleStyle,
  this.tooltipDescriptionStyle,
  this.showTail = true,
  this.imageFilter,
  this.showPulse = false,
});