eleventhLast property

T eleventhLast

Returns the eleventh last element of the list.

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

Implementation

T get eleventhLast => _getElement('eleventhLast', length - 11);
void eleventhLast=(T value)

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

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

Implementation

void set eleventhLast(T value) => _setElement('eleventhLast', length - 11, value);