operator == method
Compares coordinates for equality.
Implementation
@override
bool operator ==(Object other)
{
if (other is ISerialisable) {
return new MarshalledObject.fromDartObject(this).equals( new MarshalledObject.fromDartObject(other) );
}
else {
return false;
}
}