void add(E entry)

Add entry to the end of the linked list.

Source

void add(E entry) {
  _insertBefore(_first, entry, updateFirst: false);
}