removeNode method

void removeNode(
  1. NodeId id, {
  2. int? timestampMs,
})

Removes a node by id, clears its selection, and emits an action.

Implementation

void removeNode(NodeId id, {int? timestampMs}) {
  _sceneCommands.removeNode(id, timestampMs: timestampMs);
}