addAll method

  1. @override
void addAll(
  1. Iterable<E> iterable
)
override

This operation is not supported by an unmodifiable list.

Implementation

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