store method

void store(
  1. T input
)

Store the input to the persistent watched variable.

Won't notify the host to rebuild.

Implementation

void store(T input) {
  _value = input;
  _keepPersist();
}