bind method
When other
changes, the c
Implementation
void bind(RxValue<T> other) {
value = other.value;
other.values.listen((v) => value = v);
}
When other
changes, the c
void bind(RxValue<T> other) {
value = other.value;
other.values.listen((v) => value = v);
}