bind method

void bind(
  1. RxValue<T> reactive
)
override

Binds other to this

Implementation

void bind(RxValue<T> reactive) {
  value = reactive.value;
  reactive.values.listen((v) => value = v);
}