1. override
bool operator ==(Object other)

Two channel is equivalent, if their UUID's are the same - regardless of state.

Source

@override
bool operator ==(Object other) =>
    other is Channel && uuid.toLowerCase() == other.uuid.toLowerCase();