has method

bool has(
  1. dynamic val
)
override

Determine if there is such a node in graph

Implementation

bool has(val) {
  return _map.containsKey(val);
}