operator [] method

StreamSubscription operator [](
  1. int index
)

Return a StreamSubscription from the list with a specified index

For example:

subxList[0];

Implementation

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