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