dart / 2 / dart-collection / linkedlistentry / unlink.html

unlink method

void unlink()

Unlink the element from its linked list.

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

Implementation

void unlink() {
  _list!._unlink(this as E);
}

© 2012 the Dart project authors
Licensed under the BSD 3-Clause "New" or "Revised" License.
https://api.dart.dev/stable/2.18.5/dart-collection/LinkedListEntry/unlink.html