last property

  1. @override
TModel last
override

The last element.

Throws a StateError if this is empty. Otherwise may iterate through the elements and returns the last one seen. Some iterables may have more efficient ways to find the last element (for example a list can directly access the last element, without iterating through the previous ones).

Implementation

@override
TModel get last => _value.last;
  1. @override
void last=(TModel element)
override

This operation is not supported by an model collection.

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

Implementation

@override
set last(TModel element) {
  throw UnsupportedError("Cannot modify unmodifiable list");
}