TooltipArrow constructor

const TooltipArrow({
  1. Key? key,
  2. Size size = const Size(16.0, 16.0),
  3. Color color = Colors.white,
  4. bool isInverted = false,
})

Implementation

const TooltipArrow({
  super.key,
  this.size = const Size(16.0, 16.0),
  this.color = Colors.white,
  this.isInverted = false,
});