removeAt method

  1. @override
TModel removeAt(
  1. int index
)
override

This operation is not supported by an model collection.

Model Collectionではこの操作はサポートされていません。

Implementation

@override
TModel removeAt(int index) {
  throw UnsupportedError("Cannot modify unmodifiable list");
}