removeDependency method

void removeDependency(
  1. String nodeId
)

Removes a node dependency from this annotation.

The annotation will no longer track or contain the specified node.

Implementation

void removeDependency(String nodeId) {
  _dependencies.remove(nodeId);
}