NodeInput constructor
Input data for graphite graph's node.
id
unique id of the node.
next
outcomes list for the node defined as list of EdgeInput's.
custom size
of the node to override DirectGraph.defaultCellSize.
Implementation
NodeInput({
required this.id,
required this.next,
this.size,
});