Returns true if this value does NOT exist in the given list.
true
list
Example:
4.isNotIn([1, 2, 3]); // true
bool isNotIn(List<T> list) { return !list.contains(this); }