运算符 == 方法
- Object other
override
判断 other 是否与当前点具有相同的坐标。
如果 other 是一个具有相同 x 和 y 坐标的 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;