lastOrNull property

E? get lastOrNull

Implementation

E? get lastOrNull {
  return isEmpty ? null : last;
}