hasSufix method

bool hasSufix(
  1. String value
)

Check if has sufix

Implementation

bool hasSufix(String value) {
  final matchList =
      config.excludeSufixes.where((element) => value.endsWith(element));
  return matchList.isNotEmpty;
}