TooltipPainter constructor

TooltipPainter({
  1. required String message,
  2. required Color backgroundColor,
  3. required TextStyle textStyle,
  4. required TooltipPosition position,
  5. required double width,
  6. required double height,
})

Implementation

TooltipPainter({
  required this.message,
  required this.backgroundColor,
  required this.textStyle,
  required this.position,
  required this.width,
  required this.height,
});