matchesParts method

bool matchesParts(
  1. List<String> parts
)

True if it matches a path defined by parts.

Implementation

bool matchesParts(List<String> parts) {
  final runner = _GlobMatchRunner(this, parts);
  return runner.matches();
}