GraphStyle constructor

const GraphStyle({
  1. String nodeShape = 'box',
  2. String edgeStyle = '-->',
  3. String graphDirection = 'TB',
  4. bool showNodeData = true,
})

Implementation

const GraphStyle({
  this.nodeShape = 'box',
  this.edgeStyle = '-->',
  this.graphDirection = 'TB',
  this.showNodeData = true,
});