select<E extends UIElement> method
Implementation
E? select<E extends UIElement>(String? selectors) {
var self = this;
if (self == null || selectors == null || selectors.isEmpty) return null;
return self.querySelector<E>(selectors);
}