forward method
Forwards the values of the provided computable onto this computable, immediately emitting its current value.
Implementation
void forward(Computable<T> computable) {
add(computable.get());
_addDependency(computable);
}
Forwards the values of the provided computable onto this computable, immediately emitting its current value.
void forward(Computable<T> computable) {
add(computable.get());
_addDependency(computable);
}