Returns true if this value exists in the given list.
true
list
Example:
3.isIn([1, 2, 3]); // true
bool isIn(List<T> list) { return list.contains(this); }