last property

E last

Implementation

E get last {
  if (_count == 0) throw IterableElementError.noElement();
  return _last.key;
}