notEqualsAll method

bool notEqualsAll(
  1. List<int> values
)

Checks if int does not equals all items in the list

Implementation

bool notEqualsAll(List<int> values) => !values.all((v) => equals(v));