isNotEqualTo method

bool isNotEqualTo(
  1. num other
)

Case in-equality check.

Parameters

  • other: The value to compare

Returns

  • true if this value does not equal the other value
  • false otherwise

Implementation

bool isNotEqualTo(num other) => notEquals(other);