insert method

  1. @alwaysThrows
  2. @override
void insert(
  1. int index,
  2. HRow element
)
override

This operation is not supported by an unmodifiable list.

Implementation

@alwaysThrows
@override
void insert(int index, HRow element) {
  throw UnsupportedError("Cannot add to an unmodifiable list");
}