Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Steven Spiel
2021-07-29 11:06:07 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2021-07-29 11:06:07 -0400
Commit
39e13d136727e803c21ff81be8fe8ea00ecf45fb
39e13d13
1 parent
e6598c94
Make `Rx<T>().stream` null-safe
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
lib/get_rx/src/rx_types/rx_core/rx_impl.dart
lib/get_rx/src/rx_types/rx_core/rx_impl.dart
View file @
39e13d1
...
...
@@ -109,7 +109,7 @@ mixin RxObjectMixin<T> on NotifyManager<T> {
return
_value
;
}
Stream
<
T
?
>
get
stream
=>
subject
.
stream
;
Stream
<
T
>
get
stream
=>
subject
.
stream
;
/// Binds an existing `Stream<T>` to this Rx<T> to keep the values in sync.
/// You can bind multiple sources to update the value.
...
...
Please
register
or
login
to post a comment