removeNodes method

void removeNodes(
  1. List<NodeBluePrint> bluePrints
)

Remove the nodes from the scope

Implementation

void removeNodes(List<NodeBluePrint<dynamic>> bluePrints) {
  for (final bluePrint in bluePrints) {
    removeNode(bluePrint.key);
  }
}