addAll method

  1. @alwaysThrows
  2. @override
void addAll(
  1. Iterable<HRow> iterable
)
override

This operation is not supported by an unmodifiable list.

Implementation

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