selectAll<E extends Element> method
Implementation
List<E> selectAll<E extends Element>(String? selectors) {
var self = this;
if (self == null || selectors == null || selectors.isEmpty) return <E>[];
return self.querySelectorAll<E>(selectors);
}