endsWith function

Matcher endsWith (String suffixString)

Returns a matcher that matches if the match argument is a string and ends with suffixString.

Implementation

Matcher endsWith(String suffixString) => new _StringEndsWith(suffixString);