operator == 方法

bool operator ==(
  1. Object other
)
override

判断 other 是否与该点具有相同的坐标。

如果 other 是一个坐标与该点坐标相同的 Point,则返回 true,否则返回 false

示例

var result = const Point(0, 0) == const Point(0, 0); // true
result = const Point(1.0, 0) == const Point(-1.0, 0); // false

实现

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