last property
set
last
(E val)
Set 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.
Implementation
set last(E val) {
value.last = val;
_setValue(_value, force: true);
}