Interface for reactive values that can be manually notified.
Allows triggering change notifications without modifying the value. Useful for in-place mutations or when you want to force subscribers to re-evaluate.
Example:
final list = ListSignal([1, 2, 3]);
list.value.add(4); // Mutation doesn't auto-notify
list.notify(); // Manually trigger notification
- Implementers
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
notify(
) → void - Triggers a change notification without modifying the value.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited