Add entry to the end of the linked list.
entry
void add(E entry) { _insertBefore(_first, entry, updateFirst: false); }