retainAspects method

void retainAspects(
  1. RxImpl other
)

Retain other.aspects of this mediator variable.

Implementation

void retainAspects(RxImpl other) {
  aspects.retainAll(other.aspects);
}