Migrated llc Lists to be nullable instead of being an empty array
This commit is contained in:
@@ -623,7 +623,7 @@ class StreamChatClient {
|
||||
final channels = res.channels;
|
||||
|
||||
final users = channels
|
||||
.expand((it) => it.members)
|
||||
.expand((it) => it.members ?? <Member>[])
|
||||
.map((it) => it.user)
|
||||
.toList(growable: false);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user