equalsIgnoringHashCodes function Null safety

Matcher equalsIgnoringHashCodes(
  1. String value
)

Asserts that two Strings are equal after normalizing likely hash codes.

A # followed by 5 hexadecimal digits is assumed to be a short hash code and is normalized to #00000.

See Also:

Implementation

Matcher equalsIgnoringHashCodes(String value) {
  return _EqualsIgnoringHashCodes(value);
}