Returns true if this string is equal to any string in items.
true
items
Example:
'apple'.isAnyOf(['orange', 'apple', 'banana']); // returns: true
bool isAnyOf(List<String> items) { return items.contains(this); }