LinkedList()

Construct a new empty linked list.

Source

LinkedList() {
  _next = _previous = this;
}