Showing
1 changed file
with
1 additions
and
1 deletions
@@ -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. |
-
Please register or login to post a comment