equalTo method

bool equalTo(
  1. num x,
  2. num y
)

Indicates whether the given point (x, y) is equal to this Point. @param {number} x @param {number} y @return {boolean} True if the two Points have identical X and Y values, false otherwise. @see #equals

Implementation

_i2.bool equalTo(
  _i2.num x,
  _i2.num y,
) =>
    _i4.callMethod(
      this,
      'equalTo',
      [
        x,
        y,
      ],
    );