rename Client to StreamChatClient

This commit is contained in:
Salvatore Giordano
2021-02-01 15:30:46 +01:00
parent 1751cd6092
commit 23feabe85e
33 changed files with 185 additions and 176 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ final chatPersistentClient = StreamChatPersistenceClient(
```
2. Pass the instance to the official Stream chat client.
```dart
final client = Client(
final client = StreamChatClient(
apiKey ?? kDefaultStreamApiKey,
logLevel: Level.INFO,
)..chatPersistenceClient = chatPersistentClient;