selectNavigables method

List<UIElement> selectNavigables([
  1. UIElement? element
])

Returns List<UIElement> that are from navigable components.

element If null uses document to select sub elements.

Implementation

List<UIElement> selectNavigables([UIElement? element]) {
  return element != null
      ? element.querySelectorAll(_navigableComponentSelector)
      : documentQuerySelectorAll(_navigableComponentSelector);
}