insert method

view source

void insert (int index, E element) inherited

Implementation

void insert(int index, E element) {
  throw new UnsupportedError("Cannot add to an unmodifiable list");
}