structurallyEquals method

bool structurallyEquals(
  1. SelectorGroup other
)

Implementation

bool structurallyEquals(SelectorGroup other) {
  if (identical(this, other)) return true;
  return selectorText == other.selectorText;
}