add method

void add(
  1. StreamSubscription value
)

Add a StreamSubscription to the list

For example:

subxList.add(observable.listen(...));

Implementation

void add(StreamSubscription<dynamic> value) => _subscriptionList.add(value);