fifteenth property

T get fifteenth

Returns the fifteenth element of the list.

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

Implementation

T get fifteenth => _getElement('fifteenth', 14);
set fifteenth (T value)

Updates the fifteenth position of the list to contain value.

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

Implementation

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