HoverTooltip constructor

const HoverTooltip({
  1. Key? key,
  2. String? message,
  3. required Widget child,
  4. Widget? tooltip,
  5. BoxDecoration? decoration,
  6. TextStyle? textStyle,
})

Implementation

const HoverTooltip({
  Key? key,
  this.message,
  required this.child,
  this.tooltip,
  this.decoration,
  this.textStyle,
}) : super(key: key);