ninthOrNull property

T? get ninthOrNull

Returns the ninth element in the list or null if the list has less than 9 elements.

Implementation

T? get ninthOrNull => elementAtOrNull(8);