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