selectAll method
Implementation
List<Element> selectAll(String? selectors) {
var self = this;
return selectors != null && self != null
? self
.expand((e) => e.querySelectorAll(selectors).toElements())
.toList()
: <Element>[];
}