equalsIgnoringCase function

Matcher equalsIgnoringCase(
  1. 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) => _IsEqualIgnoringCase(value);