insertAll method

  1. @override
void insertAll(
  1. int at,
  2. Iterable<E> iterable
)
override

This operation is not supported by an unmodifiable list.

Implementation

@override
void insertAll(int at, Iterable<E> iterable) {
  throw UnsupportedError('Cannot add to an unmodifiable list');
}