insertAfter method

  1. @override
void insertAfter(
  1. NodeV0 entry
)
override

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.

Implementation

@override
void insertAfter(NodeV0 entry) {
  entry.parent = parent;
  super.insertAfter(entry);

  // Notifies the new node.
  parent?.notifyListeners();
}