E last

Source

E get last {
  if (length == 0) throw IterableElementError.noElement();
  return this[length - 1];
}