SubxList class

Constructors

SubxList()

Properties

length → int
Return the number of StreamSubscriptions
read-only
hashCode → int
The hash code for this object. [...]
read-only, inherited
runtimeType → Type
A representation of the runtime type of the object.
read-only, inherited

Methods

add(StreamSubscription value) → void
Add a 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 non-existent method or property is accessed. [...]
inherited
toString() → String
Returns a string representation of this object.
inherited

Operators

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