VSNode constructor

const VSNode({
  1. required VSNodeData data,
  2. double width = 125,
  3. Widget nodeTitleBuilder(
    1. BuildContext context,
    2. VSNodeData nodeData
    )?,
  4. 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,
});