1. override
bool visitAncestor(Element element)

Applied to each ancestor of the dispatch target. Dispatches this Notification to ancestor NotificationListener widgets.

Source

@override
bool visitAncestor(Element element) {
  if (element is StatefulElement && element.state is ScrollableState)
    _depth += 1;
  return super.visitAncestor(element);
}