showAllAnnotationNodes method

void showAllAnnotationNodes()

Shows all group and comment nodes.

This makes all previously hidden annotation nodes visible again.

Implementation

void showAllAnnotationNodes() {
  runInAction(() {
    for (final node in _nodes.values) {
      if (node is GroupNode || node is CommentNode) {
        node.isVisible = true;
      }
    }
  });
}