addItem method
void
addItem(
- E item
Adds item to the end of the list.
Implementation
void addItem(E item) {
_items.value.add(item);
_makeActionOnDataChanging();
}
Adds item to the end of the list.
void addItem(E item) {
_items.value.add(item);
_makeActionOnDataChanging();
}