On this page
querySelectorAll method
- @DomName('Element.querySelectorAll')
 
Finds all descendent elements of this element that match the specified group of selectors.
selectors should be a string using CSS selector syntax.
var items = element.querySelectorAll('.itemClassName');
  For details about CSS selector syntax, see the CSS selector specification.
Source
@DomName('Element.querySelectorAll')
ElementList<Element/*=T*/ > querySelectorAll/*<T extends Element>*/(
        String selectors) =>
    new _FrozenElementList/*<T>*/ ._wrap(_querySelectorAll(selectors));
  © 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
 https://api.dartlang.org/stable/1.24.3/dart-html/Element/querySelectorAll.html