W3cubDocs

/Dart 2

operator == method

bool operator == (dynamic 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

bool operator ==(dynamic other) =>
    // Cannot change parameter type to `Object` in case some class
    // inherits the type and uses their argument dynamically.
    other is Point && x == other.x && y == other.y;

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-math/Point/operator_equals.html