eighthLast property

T eighthLast

Returns the eighth last element of the list.

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

Implementation

T get eighthLast => _getElement('eighthLast', length - 8);
void eighthLast=(T value)

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

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

Implementation

void set eighthLast(T value) => _setElement('eighthLast', length - 8, value);