operator == method

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

The equality operator

Returns true if and only if the other of the two are the same.

Implementation

@override
bool operator ==(Object other) =>
    (other is ResultCode && _value == other._value);