update rxdart

This commit is contained in:
Salvatore Giordano
2021-05-19 12:59:21 +02:00
parent 3ab1e1956e
commit f5e73d3cc6
6 changed files with 14 additions and 13 deletions
+2 -2
View File
@@ -1495,7 +1495,7 @@ class ClientState {
Stream<OwnUser?> get userStream => _userController.stream;
/// The current user
Map<String?, User?> get users => _usersController.value!;
Map<String?, User?> get users => _usersController.value;
/// The current user as a stream
Stream<Map<String?, User?>> get usersStream => _usersController.stream;
@@ -1517,7 +1517,7 @@ class ClientState {
_channelsController.stream;
/// The current list of channels in memory
Map<String, Channel> get channels => _channelsController.value!;
Map<String, Channel> get channels => _channelsController.value;
set channels(Map<String, Channel> v) {
_channelsController.add(v);