hasNode method

bool hasNode(
  1. Link link
)

Implementation

bool hasNode(Link link) {
  return hiddens.any((n) => n.link == link);
}