select<E extends UIElement> method

E? select<E extends UIElement>(
  1. String? selectors
)

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);
}