void syncValue(String path)

Gets the value for path and forcibly updates the value to the same exact value.

Source

void syncValue(String path) {
  var n = this[path];
  n.updateValue(n.lastValueUpdate.value, force: true);
}