StrokeNode constructor
StrokeNode({})
Implementation
StrokeNode({
required super.id,
required List<Offset> points,
required this.thickness,
required this.color,
super.hitPadding,
super.transform,
super.opacity,
super.isVisible,
super.isSelectable,
super.isLocked,
super.isDeletable,
super.isTransformable,
}) : points = List<Offset>.from(points),
super(type: NodeType.stroke);