replaceWith method
Replaces the element at oldItemIndex with item.
Implementation
void replaceWith(int oldItemIndex, E item) {
_items.value[oldItemIndex] = item;
_makeActionOnDataChanging();
}
Replaces the element at oldItemIndex with item.
void replaceWith(int oldItemIndex, E item) {
_items.value[oldItemIndex] = item;
_makeActionOnDataChanging();
}