store method
void
store(
- 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();
}
Store the input to the persistent watched variable.
Won't notify the host to rebuild.
void store(T input) {
_value = input;
_keepPersist();
}