insertAll method

void insertAll(
  1. int index,
  2. Iterable<T> iterable
)

insert element list in the index

Implementation

void insertAll(int index, Iterable<T> iterable) {
  value.insertAll(index, iterable);
  notifyListeners();
}