operator == method
override
Equality for Pointers only depends on their address.
Implementation
bool operator ==(other) {
if (other == null) return false;
return address == other.address;
}
Equality for Pointers only depends on their address.
bool operator ==(other) {
if (other == null) return false;
return address == other.address;
}