NiceWorkflowDesigner constructor

const NiceWorkflowDesigner({
  1. Key? key,
  2. List<NiceWorkflowNode> nodes = const [],
  3. void onChange(
    1. List<NiceWorkflowNode> nodes
    )?,
  4. void onSave(
    1. List<NiceWorkflowNode> nodes
    )?,
  5. bool showMinimap = true,
  6. double gridSize = 20,
})

Implementation

const NiceWorkflowDesigner({
  super.key,
  this.nodes = const [],
  this.onChange,
  this.onSave,
  this.showMinimap = true,
  this.gridSize = 20,
});