third property

T get third

Third element.

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

Implementation

T get third => elementAt(2);