setValue method

void setValue(
  1. T value
)

Sets the observable value to value without notifying the event listeners.

Implementation

void setValue(T value) => _value = value;