removeNodeByPath method

dynamic removeNodeByPath(
  1. List<String> path
)

Implementation

removeNodeByPath(List<String> path) {
  var result = findByPath(path);
  if (result == null) return;
  _removeNode(result.node);
}