clearNodeDependencies method

void clearNodeDependencies(
  1. String annotationId
)

Implementation

void clearNodeDependencies(String annotationId) {
  final annotation = _annotations[annotationId];
  if (annotation != null) {
    annotation.clearDependencies();
  }
}