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