twelvthLast property

T twelvthLast

Returns the twelvth last element of the list.

Equivalent to theList[theList.length - 12]. Throws a StateError if the list doesn't have a twelvth last element.

Implementation

T get twelvthLast => _getElement('twelvthLast', length - 12);
void twelvthLast=(T value)

Updates the twelvth last position of the list to contain value.

Equivalent to theList[theList.length - 12] = value. Throws a StateError if the list doesn't have a twelvth last element.

Implementation

void set twelvthLast(T value) => _setElement('twelvthLast', length - 12, value);