operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

Compares this object with another SelfEncoder by serialized content.

Implementation

@override
bool operator ==(Object other) {
  return other is SelfEncoder &&
      const SelfEncoderEquality().equals(this, other);
}