removeAt method

  1. @alwaysThrows
  2. @override
HRow removeAt(
  1. int index
)
override

This operation is not supported by an unmodifiable list.

Implementation

@alwaysThrows
@override
HRow removeAt(int index) {
  throw UnsupportedError("Cannot remove from an unmodifiable list");
}