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