showAllGroupAndCommentNodes method

void showAllGroupAndCommentNodes()

Shows all GroupNode and CommentNode instances.

This makes all previously hidden group and comment nodes visible again.

Implementation

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