temporaryValue property

  1. @protected
void temporaryValue=(ScribbleState value)
inherited

Sets the current "value" of this HistoryValueNotifier without adding the new value to the undo history.

This is helpful for loading values or in general any other value that the user should not be able to undo to.

Implementation

@protected
set temporaryValue(T value) {
  super.value = value;
}