setValueSilence

fun setValueSilence(value: T)(source)

Sets the value of the property without invoking the beforeChange and afterChange listeners. However, the onUpdated callback (if set) and onBindCallback callback will still be triggered.

This method is useful when you want to update the state internally without triggering external change notifications, but still want to execute the primary update logic and binding callbacks.

Parameters

value

The new value to set.