bindStream method

void bindStream(
  1. Stream<T> stream
)
override

Binds the stream to this

Implementation

void bindStream(Stream<T> stream) => stream.listen((v) => value = v);