FancyDelegate class

A abstraction of something can be disposable, everything can be disosable has all of power of fancy stream (extesion functions over Disposable). This class only have a dispose function, when you no need more yours streams you MUST call it.

Implemented types
Implementers

Constructors

FancyDelegate({Fancy? fancy})

Properties

fancy Fancy
final
hashCode int
The hash code for this object.
no setterinherited
map Map
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

addTransformOn<T, S>(StreamTransformer<T, S> streamTransformer, {Object? key}) → void
override
cleanAll() → void
Clean/close all necessary (loaded) objects.
dispatchAllOn<T>(Stream<T> values, {Object? key}) → void
override
dispatchErrorOn<T>(Object value, {Object? key}) → void
override
dispatchOn<T>(T value, {Object? key}) → void
override
dispose() → void
Must call when your imlpementation of this class are being disposed.
override
listenOn<T>(void onData(T), {Function? onError, void onDone()?, bool? cancelOnError, Object? key}) StreamSubscription<T>
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
streamOf<T>({Object? key}) Stream<T>
override
toString() String
A string representation of this object.
inherited
valuesToMap<K>() Map<K, dynamic>

Operators

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