equal method

bool equal(
  1. num b
)

Performs a SameValueZero comparison between two values to determine if they are equivalent. This is equivalent to the == operator.

Implementation

bool equal(num b) => isEqual(this, b);