Chat Flutter v3
Chat Flutter
Chat
Flutter
Home
/
Chat
/
Flutter
/
User
You can create a query to retrieve a list of muted users in both open and group channels. Only users registered as channel operators may use the following code.
You can create a query to retrieve a list of muted users in both open and group channels. Only users registered as channel operators may use the following code.
try { // Retrieve muted users. final listQuery = UserListQuery() ..queryType = UserListQueryType.muted; ..channelType=ChannelType.channel // Channel can be open or group. final users = await listQuery.loadNext(); } catch (e) { // Handle error. }