TooltipBorderPainter constructor

TooltipBorderPainter({
  1. required Color borderColor,
  2. double borderWidth = 2.0,
  3. required TooltipPosition position,
  4. required double width,
  5. required double height,
})

Implementation

TooltipBorderPainter({
  required this.borderColor,
  this.borderWidth = 2.0,
  required this.position,
  required this.width,
  required this.height,
});