add method

void add (StreamSubscription value)

Add a StreamSubscription to the list

For example:

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

Implementation

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