SetController<T> class abstract interface

Mutable set state returned by useSet.

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 Set<T>
An unmodifiable live view of the current values.
no setter

Methods

add(T item) bool
Adds item and reports whether the set changed.
addAll(Iterable<T> items) → void
Adds items, skipping the update when every value already exists.
clear() → void
Removes every value, skipping the update when already empty.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
remove(T item) bool
Removes item and reports whether the set changed.
replaceAll(Iterable<T> items) → void
Replaces all values when their contents differ.
toString() String
A string representation of this object.
inherited

Operators

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