Removes all characters that appear in chars from the string.
chars
Example:
blacklist('hello world', 'lo'); // 'he wrd'
String blacklist(String str, String chars) => _blacklist(str, chars);