fourteenth property

T get fourteenth

Returns the fourteenth element of the list.

Equivalent to theList[13]. Throws a StateError if the list doesn't have a fourteenth element.

Implementation

T get fourteenth => _getElement('fourteenth', 13);
set fourteenth (T value)

Updates the fourteenth position of the list to contain value.

Equivalent to theList[13] = value. Throws a StateError if the list doesn't have a fourteenth element.

Implementation

/// Throws a [StateError] if the list doesn't have a fourteenth element.
void set fourteenth(T value) => _setElement('fourteenth', 13, value);