addItemAt method

void addItemAt(
  1. int index,
  2. E item
)

Inserts item at the specified index in the list.

Implementation

void addItemAt(int index, E item) {
  _items.value.insert(index, item);
  _makeActionOnDataChanging();
}