lastOrNull property

T? get lastOrNull

Returns the last element, or null if the iterable is empty.

Implementation

T? get lastOrNull => isEmpty ? null : last;