isDescendantOf method

bool isDescendantOf(
  1. Comp<T> other
)
inherited

Implementation

bool isDescendantOf(Comp<T> other) {
  return other.isAncestorOf(this);
}