WrappedSignal<T> class
Wrap a Signal and implement the same API
- Inheritance
-
- Object
- WrappedReadonlySignal<
T, Signal< T> > - WrappedSignal
- Implemented types
-
- Signal<
T>
- Signal<
- Available extensions
Constructors
-
WrappedSignal.new(Signal<
T> source) - Wrap a Signal and implement the same API
Properties
- autoDispose → bool
-
Throws and error if read after dispose and can be
disposed on last unsubscribe.
no setterinherited
- debugLabel → String?
-
Debug label for Debug Mode
no setterinherited
- disposed ↔ bool
-
Returns true if dispose has been called and will throw and
error on value read
getter/setter pairinherited
- equalityCheck ↔ bool Function(T a, T b)
-
Optional method to check if to values are the same
getter/setter pairoverride
- globalId → int
-
Global ID of the signal
no setterinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
- hasTargets → bool
-
Check if there are any targets attached
no setterinherited
- initialValue → T
-
Value that the signal was created with
no setterinherited
- isInitialized → bool
-
Check if the signal is lazy and has not had a value set
no setterinherited
- previousValue → T?
-
Previous value that was set before the current
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
-
source
→ Signal<
T> -
Internal source signal
finalinherited
-
targets
→ Iterable<
SignalListenable> -
@internal for testing getter to track all the effects currently
effected in the signal
no setterinherited
- value ↔ T
-
Compute the current value
getter/setter pairinherited-getteroverride-setter
- version → int
-
Version number is used to track changes and will increment for every set
no setterinherited
Methods
-
call(
) → T -
Return the value when invoked
inherited
-
dispose(
) → void -
Dispose the signal
inherited
-
forceUpdate(
[T? val]) → void -
Force update a value
override
-
get(
) → T -
Get the current value
inherited
-
listen(
BuildContext context, void callback(), {String? debugLabel}) → void -
Available on ReadonlySignal<
Used to listen for updates on a signal but not rebuild the nearest elementT> , provided by the FlutterReadonlySignalUtils extension -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
onDispose(
void cleanup()) → EffectCleanup -
Add a cleanup function to be called when the signal is disposed
inherited
-
overrideWith(
T value) → Signal< T> -
Override the current signal with a new value as if it was created with it
override
-
peek(
) → T -
In the rare instance that you have an effect that should write to
another signal based on the previous value, but you don't want the
effect to be subscribed to that signal, you can read a signals's
previous value via
signal.peek()
.inherited -
readonly(
) → ReadonlySignal< T> -
Returns a readonly signal
override
-
select<
R> (R selector(ReadonlySignal< T> ), {bool autoDispose = false, String? debugLabel}) → Computed<R> -
Available on ReadonlySignal<
Select a value and return a computed signal to listen for changesT> , provided by the ReadonlySignalUtils extension -
set(
T val, {bool force = false}) → bool -
Update the current value.
override
-
subscribe(
void fn(T value)) → EffectCleanup -
Subscribe to value changes
inherited
-
toJson(
) → dynamic -
Convert value to JSON
inherited
-
toStream(
) → Stream< T> -
Available on ReadonlySignal<
Convert a signal to a Stream to be consumed as a read only stream.T> , provided by the ReadonlySignalUtils extension -
toString(
) → String -
A string representation of this object.
inherited
-
toValueListenable(
) → SignalValueListenable< T, ValueListenable< T> , ReadonlySignal<T> > -
Available on ReadonlySignal<
Convert a signal to ValueListenable to be used in builders and other existing widgets like ValueListenableBuilderT> , provided by the FlutterReadonlySignalUtils extension -
toValueNotifier(
) → SignalValueNotifier< T> -
Available on Signal<
Convert a ValueListenable to Signal to be used in builders and other existing widgets like ValueListenableBuilder and allow for mutationT> , provided by the FlutterSignalUtils extension -
unlisten(
BuildContext context, void callback()) → void -
Available on ReadonlySignal<
Stop subscriptions to updates on a signal for listenersT> , provided by the FlutterReadonlySignalUtils extension -
unwatch(
BuildContext context) → void -
Available on ReadonlySignal<
Stop subscriptions to updates on a signal for watchersT> , provided by the FlutterReadonlySignalUtils extension -
watch(
BuildContext context, {String? debugLabel}) → T -
Available on ReadonlySignal<
Rebuild the Element that the current signal is inside ofT> , provided by the FlutterReadonlySignalUtils extension
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited