Returns true if this string equals any item in list.
list
bool isAny(List<String> list) { if (isEmpty || list.isEmpty) return false; return list.any((String e) => e == this); }