clearAllValues method

void clearAllValues()

Reset all the values of the nodes. Call it on the father node!

Implementation

void clearAllValues() {
  var listanodi = _getNodiFiglio();
  for (var nodo in listanodi) {
    nodo.value = null;
    nodo.stringValue = null;
  }
}