setAll method

  1. @alwaysThrows
  2. @override
void setAll(
  1. int at,
  2. Iterable<HRow> iterable
)
override

This operation is not supported by an unmodifiable list.

Implementation

@alwaysThrows
@override
void setAll(int at, Iterable<HRow> iterable) {
  throw UnsupportedError("Cannot modify an unmodifiable list");
}