reset method

void reset()

Resets the setting to its default value by invoking the _decode function with a NullSettingValue and setting value to the result.

Implementation

void reset() {
  value.value = _decode(const NullSettingValue());
}