matches method

  1. @override
Match? matches(
  1. String s
)
override

Implementation

@override
Match? matches(String s) {
  var pattern = _pattern;
  return pattern.firstMatch(s);
}