operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

A Point is only equal to another Point with the same coordinates.

This point is equal to other if, and only if, other is a Point with x equal to other.x and y equal to other.y.

Implementation

@override
bool operator ==(Object other) =>
    other is math.Point && x == other.x && y == other.y;