TrendAngleTool constructor
TrendAngleTool({})
Implementation
TrendAngleTool({
required String id,
this.startPoint,
this.endPoint,
this.angle,
Color color = const Color(0xFFFFD700),
double strokeWidth = 2.0,
}) : super(
id: id,
type: DrawingToolType.trendAngle,
createTime: DateTime.now(),
color: color,
strokeWidth: strokeWidth,
);