void add(
E entry
)

Add entry to the end of the linked list.

Source

/**
 * Add [entry] to the end of the linked list.
 */
void add(E entry) {
  _insertAfter(_previous, entry);
}