second property

T get second

Second element.

[1, 2, 3].second; // 2

Implementation

T get second => elementAt(1);