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