firstOrNull property

T? firstOrNull

Implementation

T? get firstOrNull => isEmpty ? null : first;