SubxList class

Class that holds and manages Key-Subscription pairs.

Constructors

SubxList()

Properties

hashCode int
The hash code for this object.
no setterinherited
length int
Return the number of StreamSubscriptions
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

add(StreamSubscription value) → void
Add a StreamSubscription to the list
addAll(Iterable<StreamSubscription> values) → void
Add a list of StreamSubscription to the list
cancelAll() → void
Unsubscribe to all StreamSubscriptions and remove them from the list
cancelAt(int index) Future<bool>
Unsubscribe to a StreamSubscription with a specified index and remove it from list
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
pauseAll() → void
Pause all StreamSubscriptions of the list
resumeAll() → void
Resume all StreamSubscriptions of the list
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited
operator [](int index) StreamSubscription
Return a StreamSubscription from the list with a specified index