owns method

bool owns(
  1. Node other
)

Checks if this node owns the other node.

Implementation

bool owns(Node other) => identical(this, other.parent);