matchesGlob method

bool matchesGlob(
  1. List<Glob> globs,
  2. String line
)

Implementation

bool matchesGlob(List<Glob> globs, String line) =>
    globs.any((r) => r.matches(line.substring(3)));