notEquals method

  1. @override
bool notEquals(
  1. Iterable<E>? elements1,
  2. Iterable<E>? elements2
)
inherited

Compare two elements for being not equal.

This should be a proper equality relation.

Implementation

@override
bool notEquals(T? elements1, T? elements2) => !equals(elements1, elements2);