add method
void
add(
- T item
Adds an item to the list.
Implementation
void add(T item) {
final newList = List<T>.from(value)..add(item);
value = newList;
}
Adds an item to the list.
void add(T item) {
final newList = List<T>.from(value)..add(item);
value = newList;
}