Add entry to the beginning of the linked list.
entry
void addFirst(E entry) { _insertBefore(_first, entry, updateFirst: true); _first = entry; }