excludePathCheckerEndsWith static method
Implementation
static ExcludePathChecker excludePathCheckerEndsWith(String exclude) =>
_ExcludePathCheckerImpl(
predicate: (path) => path.endsWith(exclude),
description: 'Ends with: $exclude',
);