bind method
Binds other
to this
Implementation
void bind(RxValue<T> reactive) {
value = reactive.value;
reactive.values.listen((v) => value = v);
}
Binds other
to this
void bind(RxValue<T> reactive) {
value = reactive.value;
reactive.values.listen((v) => value = v);
}