VSNode constructor
const
VSNode({
- required VSNodeData data,
- double width = 125,
- Widget nodeTitleBuilder(
- BuildContext context,
- VSNodeData nodeData
- Key? key,
The base node widget
Used inside VSNodeView to display nodes
Implementation
const VSNode({
required this.data,
this.width = 125,
this.nodeTitleBuilder,
super.key,
});