operator == method

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

Returns true if both RxValue values are equal

Will register both objects

Implementation

@override
bool operator ==(Object other) {
  return other is RxValue && value == other.value;
}