structurallyEquals method

bool structurallyEquals(
  1. CSSStyleSheet other
)

Implementation

bool structurallyEquals(CSSStyleSheet other) {
  if (identical(this, other)) return true;
  return type == other.type &&
      disabled == other.disabled &&
      href == other.href &&
      cssRuleListsStructurallyEqual(cssRules, other.cssRules);
}