isAny method
Returns true if this string equals any item in list.
Audited: 2026-06-12 11:26 EDT
Implementation
@useResult
bool isAny(List<String> list) {
if (isEmpty || list.isEmpty) {
return false;
}
return list.any((String e) => e == this);
}