excludePathCheckerStartsWith static method
Implementation
static ExcludePathChecker excludePathCheckerStartsWith(String exclude) =>
_ExcludePathCheckerImpl(
predicate: (path) => path.startsWith(exclude),
description: 'Starts with: $exclude',
);