ArrowShape constructor

ArrowShape({
  1. Offset location = const Offset(0, 0),
  2. double length = 150,
  3. double width = 4,
  4. Color color = Colors.grey,
  5. int zIndex = 0,
  6. PaintingStyle style = PaintingStyle.stroke,
  7. int reactSize = 10,
})

Implementation

ArrowShape({
  super.location,
  super.length = 150,
  super.width = 4,
  super.color,
  super.zIndex,
  super.style = PaintingStyle.stroke,
  super.reactSize,
});