last property
Returns the last element of the slice, can throw.
Implementation
@override
@pragma("vm:prefer-inline")
T get last {
return _list[_end - 1];
}
The last element of the list.
The list must be non-empty when accessing its last element.
The last element of a list can be modified, unlike an Iterable.
A list.last
is equivalent to theList[theList.length - 1]
,
both for getting and setting the value.
final numbers = <int>[1, 2, 3];
print(numbers.last); // 3
numbers.last = 10;
print(numbers.last); // 10
numbers.clear();
numbers.last; // Throws.
Implementation
@override
set last(T value) {
if (_start == _end) {
panic("Cannot set 'last' while slice is empty.");
}
_list[_end - 1] = value;
}