isIn method

bool isIn(
  1. Iterable<String> values
)

Checks if the string is one of the values.

Implementation

bool isIn(Iterable<String> values) {
  return _isIn(this, values);
}