IterableAtom<T> class abstract

Implemented types
Implementers

Constructors

IterableAtom()
const

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value Iterable<T>
The current value of the object. When the value changes, the callbacks registered with addListener will be invoked.
no setteroverride

Methods

add(T value) → void
Adds a value to the iterable atom
addAll(Iterable<T> values) → void
Adds all values to the iterable atom
addListener(VoidCallback listener) → void
Register a closure to be called when the object notifies its listeners.
inherited
clear() → void
Clears all values from the iterable atom
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
remove(T value) → void
Removes a value from the iterable atom
removeAll(Iterable<T> values) → void
Removes all values from the iterable atom
removeListener(VoidCallback listener) → void
Remove a previously registered closure from the list of closures that the object notifies.
inherited
set(Iterable<T> value) → void
Sets a given value for this atom
inherited
toString() String
A string representation of this object.
inherited

Operators

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