IterableAtomNotifier<T> class
- Inheritance
-
- Implemented types
-
- Implementers
Properties
-
hashCode
→ int
-
The hash code for this object.
no setterinherited
-
hasListeners
→ bool
-
Whether any listeners are currently registered.
no setterinherited
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
no setterinherited
-
value
↔ Iterable<T>
-
The current value stored in this notifier.
getter/setter pairinherited
Methods
-
add(T value)
→ void
-
Adds a value to the iterable atom
override
-
addAll(Iterable<T> values)
→ void
-
Adds all values to the iterable atom
override
-
addListener(VoidCallback listener)
→ void
-
Register a closure to be called when the object changes.
inherited
-
clear()
→ void
-
Clears all values from the iterable atom
override
-
dispose()
→ void
-
Discards any resources used by the object. After this is called, the
object is not in a usable state and should be discarded (calls to
addListener will throw after the object is disposed).
inherited
-
listen(AtomListener<Iterable<T>> listener)
→ void
-
Adds a listener to the atom
inherited
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
notifyListeners()
→ void
-
Call all the registered listeners.
inherited
-
on<E extends T>(AtomListener<E> listener)
→ void
-
Adds a listener which executes when value is set as E
inherited
-
remove(T value)
→ void
-
Removes a value from the iterable atom
override
-
removeAll(Iterable<T> values)
→ void
-
Removes all values from the iterable atom
override
-
removeListener(VoidCallback listener)
→ void
-
Remove a previously registered closure from the list of closures that are
notified when the object changes.
inherited
-
removeListeners()
→ void
-
inherited
-
set(Iterable<T> value)
→ void
-
Sets a given value for this atom
inherited
-
toString()
→ String
-
A string representation of this object.
inherited