Checks if int does not equals any item in the list
bool notEqualsAny(List<int> values) => !values.any((v) => equals(v));