equals method

bool equals(
  1. DependNode other
)

Implementation

bool equals(DependNode other) {
  return super == other || (package == other.package && path == other.path);
}