insert method

dynamic insert(
  1. int index,
  2. E element
)

Implementation

insert(int index, E element) {
  _list.insert(index, element);
}