Flutter
foundation
ObserverList
<
T
>
add method
add
ObserverList class
Constructors
ObserverList
Properties
isEmpty
isNotEmpty
iterator
first
hashCode
last
length
runtimeType
single
Methods
add
contains
remove
any
cast
elementAt
every
expand
firstWhere
fold
followedBy
forEach
join
lastWhere
map
noSuchMethod
reduce
singleWhere
skip
skipWhile
take
takeWhile
toList
toSet
toString
where
whereType
Operators
operator ==
add method
void
add
(
T
item
)
Adds an item to the end of this list.
Implementation
void add(T item) { _isDirty = true; _list.add(item); }