internalSetValue method

  1. @protected
void internalSetValue(
  1. T value
)

Internal setter for _value. Should only be used in Rx extensions and never externally. Does not notify.

Example: Used by fast_rx_persistence to set _value from a key/value store after initialization

Implementation

@protected
void internalSetValue(T value) => _value = value;