remove method

void remove()
inherited

Implementation

void remove() {
  prev?._next = next;
  next?._prev = prev;
  _prev = null;
  _next = null;
}