firstOrNull property

E? get firstOrNull

Implementation

E? get firstOrNull {
  return isEmpty ? null : first;
}