replaceRange method

  1. @override
void replaceRange(
  1. int start,
  2. int end,
  3. Iterable<E> iterable
)
override

This operation is not supported by an unmodifiable list.

Implementation

@override
void replaceRange(int start, int end, Iterable<E> iterable) {
  throw UnsupportedError('Cannot remove from an unmodifiable list');
}