insert method Null safety

void insert(
  1. int index,
  2. double element
)
inherited

This operation is not supported by an unmodifiable list.

Implementation

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