fillRange method

  1. @override
void fillRange(
  1. int start,
  2. int end, [
  3. TModel? fillValue
])
override

This operation is not supported by an model collection.

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

Implementation

@override
void fillRange(int start, int end, [TModel? fillValue]) {
  throw UnsupportedError("Cannot modify unmodifiable list");
}