first property

E first

Implementation

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