areNotEqual static method

bool areNotEqual(
  1. dynamic value1,
  2. dynamic value2
)

Checks if two values are NOT equal The operation can be performed over values of any type.

  • value1 the first value to compare
  • value2 the second value to compare Returns true if values are NOT equal and false otherwise

Implementation

static bool areNotEqual(dynamic value1, dynamic value2) {
  return !ObjectComparator.areEqual(value1, value2);
}