ArrowTool constructor
ArrowTool({})
Implementation
ArrowTool({
required String id,
this.startPoint,
this.endPoint,
this.arrowHeadSize = 10.0,
Color color = const Color(0xFFFF6B6B),
double strokeWidth = 2.0,
}) : super(
id: id,
type: DrawingToolType.arrow,
createTime: DateTime.now(),
color: color,
strokeWidth: strokeWidth,
);