operator == method
Compares this object with another SelfEncoder by serialized content.
Implementation
@override
bool operator ==(Object other) {
return other is SelfEncoder &&
const SelfEncoderEquality().equals(this, other);
}
Compares this object with another SelfEncoder by serialized content.
@override
bool operator ==(Object other) {
return other is SelfEncoder &&
const SelfEncoderEquality().equals(this, other);
}