getAnnotationsDependingOnNode method

List<Annotation> getAnnotationsDependingOnNode(
  1. String nodeId
)

Implementation

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