NodeInput constructor

NodeInput({
  1. required String id,
  2. required List<EdgeInput> next,
  3. NodeSize? size,
})

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,
});