queryAllByTag

List<JSAny?> queryAllByTag(

  1. String tagName
)

Finds all DOM elements with the given tag name.

Implementation

List<JSAny?> queryAllByTag(String tagName) =>
    _scryRenderedDOMComponentsWithTag(_container, tagName).toDart;