matches method

  1. @override
bool matches(
  1. String path
)
override

Checks if the given path matches the pattern.

Implementation

@override
bool matches(String path) {
  return _regex.hasMatch(path);
}