bind method

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

When other changes, the c

Implementation

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