FStream<T> class

A value stream based where the first element is a future

Implemented types
Available Extensions

Constructors

FStream(T first, Stream<T> after, [String? debugName])
FStream.ofFuture(Future<T?> _firstFuture, Stream<T> after, [String? debugName])
The constructor resolves the first item and then passes it in the after stream, while also setting it as _first

Properties

after Stream<T>
final
debugName String?
final
first → T?
no setter
future Future<T?>
no setteroverride
hashCode int
The hash code for this object.
no setterinherited
isFirstResolved bool
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

get() FutureOr<T?>
override
map<R>(R mapper(T input)) ValueStream<R>
Basics of converting something over
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
resolve([T? ifAbsent]) → T?
override
toString() String
A string representation of this object.
inherited

Operators

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