hasSuffix method
Check if has suffix
Implementation
bool hasSuffix(
{required String file, required List<String> excludeSuffixes}) {
final hasSufix = excludeSuffixes.any((sufix) => file.endsWith(sufix));
return hasSufix;
}
Check if has suffix
bool hasSuffix(
{required String file, required List<String> excludeSuffixes}) {
final hasSufix = excludeSuffixes.any((sufix) => file.endsWith(sufix));
return hasSufix;
}