listen method

StreamSubscription<T?> listen(
  1. void _(
    1. T?
    )
)

used by the RxBuilder to listen the changes in a observable

Implementation

StreamSubscription<T?> listen(void Function(T?) _) {
  return subject.stream.listen(_);
}