fourth property

T get fourth

Fourth element.

[1, 2, 3, 4].fourth; // 4

Implementation

T get fourth => elementAt(3);