selectorsWithoutPseudoElement property

List<Selector> get selectorsWithoutPseudoElement

Implementation

List<Selector> get selectorsWithoutPseudoElement {
  return _selectorsWithoutPseudoElement ??= selectors
      .where((selector) => !selector.hasPseudoElement)
      .toList(growable: false);
}