removeNodes method

void removeNodes(
  1. List<VSNodeData> nodeDatas
)

Removes multiple nodes

Notifies listeners to this provider

Implementation

void removeNodes(List<VSNodeData> nodeDatas) async {
  nodeManager.removeNodes(nodeDatas);
  historyManager?.updateHistory();
  notifyListeners();
}