bindOrSet method
void
bindOrSet(
- dynamic other
override
Implementation
void bindOrSet(/* T | Stream<T> | Reactive<T> */ other) {
if (other is RxValue<T>) {
bind(other);
} else if (other is Stream<T>) {
bindStream(other.cast<T>());
} else {
value = other;
}
}