operator [] method

StreamSubscription operator [] (int index)

Return a StreamSubscription from the list with a specified index

For example:

subxList[0];

Implementation

StreamSubscription operator [](int index) => _subscriptionList[index];