startsWith function

Matcher startsWith (String prefixString)

Returns a matcher that matches if the match argument is a string and starts with prefixString.

Implementation

Matcher startsWith(String prefixString) => new _StringStartsWith(prefixString);