seventhOrNull property
T?
get
seventhOrNull
Returns the seventh element in the list or null if the list has less than 7 elements.
Implementation
T? get seventhOrNull => elementAtOrNull(6);
Returns the seventh element in the list or null if the list has less than 7 elements.
T? get seventhOrNull => elementAtOrNull(6);