ninthLast property

T ninthLast

Returns the ninth last element of the list.

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

Implementation

T get ninthLast => _getElement('ninthLast', length - 9);
void ninthLast=(T value)

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

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

Implementation

void set ninthLast(T value) => _setElement('ninthLast', length - 9, value);