copyInfo method

void copyInfo(
  1. RxImpl<T> other
)

Copy info from another Rx variable.

Implementation

void copyInfo(RxImpl<T> other) {
  _tag.addAll(other._tag);
  _pub = other._pub;
  rxAspects.addAll(other.rxAspects);
}