bool valuePersistenceEnabled

persist value setting to disk, default to true;

Source

bool get valuePersistenceEnabled {
  if (dslinkJson is Map && dslinkJson['configs'] is Map && dslinkJson['configs']['valuePersistenceEnabled'] is Map
      && dslinkJson['configs']['valuePersistenceEnabled']['value'] == false) {
    return false;
  }
  return true;
}