select method

Element? select(
  1. String? selectors
)

Implementation

Element? select(String? selectors) {
  var self = this;
  if (self == null || selectors == null || selectors.isEmpty) return null;
  return self.querySelector(selectors);
}