VerticalLineTool constructor
VerticalLineTool({})
Implementation
VerticalLineTool({
required String id,
this.xPosition,
this.timePoint,
Color color = const Color(0xFF00BFFF),
double strokeWidth = 2.0,
}) : super(
id: id,
type: DrawingToolType.verticalLine,
createTime: DateTime.now(),
color: color,
strokeWidth: strokeWidth,
);