Node constructor

Node({
  1. required String id,
  2. String? name,
  3. required bool visible,
  4. String? type,
  5. dynamic pluginData,
  6. dynamic sharedPluginData,
  7. double? rotation,
  8. Map<String, String>? componentPropertyReferences,
})

Implementation

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