equalsIgnoringCase function

Matcher equalsIgnoringCase (String value)

Returns a matcher which matches if the match argument is a string and is equal to value when compared case-insensitively.

Implementation

Matcher equalsIgnoringCase(String value) => new _IsEqualIgnoringCase(value);