notEquals method

bool notEquals(
  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 notEquals(num other) => this != other;