Checks equality based on the current value.
@override bool operator ==(Object other) => identical(this, other) || other is Rx<T> && runtimeType == other.runtimeType && _value == other._value;