StreamWithValue<T> class abstract

The base encapsulation for all the convenience implementations.

Implementers
Available Extensions

Constructors

StreamWithValue()

Properties

hashCode int
The hash code for this object.
no setterinherited
loaded bool
Whether it's safe to access value (i.e. it is initialized).
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
updates Stream<T>
Any changes to value, in the form of a stream. The current value itself typically is not sent upon Stream.listen to updates, although this detail is implementation defined.
no setter
value → T
The value associated with the updates stream, commonly the latest one. Be sure to check loaded before accessing the value; otherwise it may not be initialized yet, and accessing it will raise an exception.
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited