NodeEditorEvent constructor

const NodeEditorEvent({
  1. required String id,
  2. bool isHandled = false,
  3. bool isUndoable = false,
})

Implementation

const NodeEditorEvent({
  required this.id,
  this.isHandled = false,
  this.isUndoable = false,
});