fix persistence abstract class

This commit is contained in:
Salvatore Giordano
2021-04-19 16:21:32 +02:00
parent b69be11e4d
commit b250bdb98e
3 changed files with 36 additions and 38 deletions
+2 -2
View File
@@ -523,10 +523,10 @@ class StreamChatClient {
_ws = WebSocket(
baseUrl: baseURL,
user: state.user,
user: state.user!,
connectParams: {
'api_key': apiKey,
'authorization': token,
'authorization': token!,
'stream-auth-type': _authType,
'X-Stream-Client': _userAgent,
},