removeRx method

  1. @protected
void removeRx(
  1. Rx rx
)

Remove an Rx from this composite

Implementation

@protected
void removeRx(Rx rx) {
  final sub = _subs.remove(identityHashCode(rx));
  sub?.cancel();
}