notEqualsAny method

bool notEqualsAny(
  1. List<int> values
)

Checks if int does not equals any item in the list

Implementation

bool notEqualsAny(List<int> values) => !values.any((v) => equals(v));