getAnnotationsDependingOnNode method
Implementation
List<Annotation> getAnnotationsDependingOnNode(String nodeId) {
return _annotations.values
.where((annotation) => annotation.hasDependency(nodeId))
.toList();
}
List<Annotation> getAnnotationsDependingOnNode(String nodeId) {
return _annotations.values
.where((annotation) => annotation.hasDependency(nodeId))
.toList();
}