remove method

void remove(
  1. covariant Node value
)
override

Remove a child value node from the children

The ValueListenable and removedNodes listeners will also be notified on this operation

Implementation

void remove(Node value) {
  super.remove(value);
  _notifyListeners();
  _notifyNodesRemoved(NodeRemoveEvent(List.from([value])));
}