add method
void
add(
- T item
Implementation
void add(T item) {
final temp = List<T>.from(value);
temp.add(item);
value = temp;
}
void add(T item) {
final temp = List<T>.from(value);
temp.add(item);
value = temp;
}