AnimatedListModel<E> class

Constructors

AnimatedListModel({required GlobalKey<AnimatedListState> listKey, required Function removedItemBuilder, Iterable<E>? initialItems})

Properties

hashCode int
The hash code for this object.
no setterinherited
isEmpty bool
no setter
isNotEmpty bool
no setter
items List<E>
no setter
length int
no setter
listKey GlobalKey<AnimatedListState>
final
removedItemBuilder Function
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

clear() → void
contains(E item) bool
indexOf(E item) int
insert(int index, E item) → void
map(Function f) Iterable<E>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
removeAt(int index) → E
toString() String
A string representation of this object.
inherited
where(Function f) Iterable<E>

Operators

operator ==(Object other) bool
The equality operator.
inherited
operator [](int index) → E