Contains method

bool Contains(
  1. String s
)
Determines whether the list contains a specific string. The String to check the presence of.

Implementation

bool Contains(String s) {
  return this._items.contains(s);
}