structuralHashCode property

int get structuralHashCode

Implementation

int get structuralHashCode {
  final List<String> propertyNames = _structuralPropertyNames();
  return Object.hashAll(propertyNames.map((propertyName) => Object.hash(
        propertyName,
        _getPropertyValueByNormalizedName(propertyName),
        _getPropertyBaseHrefByNormalizedName(propertyName),
        _importants[propertyName] == true,
      )));
}