Node constructor

Node({
  1. required String id,
  2. String? name,
  3. required bool visible,
  4. String? type,
  5. dynamic pluginData,
  6. dynamic sharedPluginData,
})

Implementation

Node({
  required this.id,
  this.name,
  required this.visible,
  this.type,
  this.pluginData,
  this.sharedPluginData,
});