addAspects method

void addAspects(
  1. RxImpl other
)

Add other.aspects to the aspects of this mediator variable.

Implementation

void addAspects(RxImpl other) {
  aspects.addAll(other.aspects);
}