Steven Spiel
Committed by GitHub

Make `Rx<T>().stream` null-safe

@@ -109,7 +109,7 @@ mixin RxObjectMixin<T> on NotifyManager<T> { @@ -109,7 +109,7 @@ mixin RxObjectMixin<T> on NotifyManager<T> {
109 return _value; 109 return _value;
110 } 110 }
111 111
112 - Stream<T?> get stream => subject.stream; 112 + Stream<T> get stream => subject.stream;
113 113
114 /// Binds an existing `Stream<T>` to this Rx<T> to keep the values in sync. 114 /// Binds an existing `Stream<T>` to this Rx<T> to keep the values in sync.
115 /// You can bind multiple sources to update the value. 115 /// You can bind multiple sources to update the value.