second property
E
get
second
Second element.
[1, 2, 3].second; // 2
Implementation
E get second => _getElementAtOrThrow<E>(this, 1);
Second element.
[1, 2, 3].second; // 2
E get second => _getElementAtOrThrow<E>(this, 1);