HorizontalRayTool constructor
HorizontalRayTool({})
Implementation
HorizontalRayTool({
required String id,
this.yPosition,
this.centerX,
this.priceValue,
Color color = const Color(0xFF00BFFF),
double strokeWidth = 2.0,
}) : super(
id: id,
type: DrawingToolType.horizontalRay,
createTime: DateTime.now(),
color: color,
strokeWidth: strokeWidth,
);