operator == method

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

Checks equality based on the current value.

Implementation

@override
bool operator ==(Object other) =>
    identical(this, other) ||
    other is Rx<T> &&
        runtimeType == other.runtimeType &&
        _value == other._value;