Arrow constructor

const Arrow({
  1. required Color color,
  2. required TooltipPosition position,
  3. double width = 16.0,
  4. double height = 10.0,
  5. Key? key,
})

Implementation

const Arrow({
  required this.color,
  required this.position,
  this.width = 16.0,
  this.height = 10.0,
  super.key,
});