isEqualTo method

bool isEqualTo(
  1. num other
)

Case equality check.

Parameters

  • other: The value to compare

Returns

  • true if this value equals the other value
  • false otherwise

Implementation

bool isEqualTo(num other) => equals(other);