subscribeToAll method

  1. @protected
void subscribeToAll(
  1. Iterable<StreamSubscription> subscriptions
)

Subscribes to the list of given subscriptions to cancel them on dispose.

Implementation

@protected
void subscribeToAll(Iterable<StreamSubscription> subscriptions) {
  _subscriptions.addAll(subscriptions);
}