notEqualsAll method
Checks if num does not equals all items in the list
Parameters
values
: The list of values to compare
Returns
true
if this value does not equal all items in the listfalse
otherwise
Implementation
bool notEqualsAll(List<num> values) => !values.all((v) => equals(v));