void insertAfter(
E entry
)

Insert an element after this element in this element's linked list.

This entry must be in a linked list when this method is called. The entry must not be in a linked list.

Source

/**
 * Insert an element after this element in this element's linked list.
 *
 * This entry must be in a linked list when this method is called.
 * The [entry] must not be in a linked list.
 */
void insertAfter(E entry) {
  _list._insertAfter(this, entry);
}