/ SDKs / Flutter
SDKs
Chat SDKs Flutter v4
Chat SDKs Flutter
Chat SDKs
Flutter
Version 4

Retrieve members who have read a message

Copy link

Using the getReadMembers() method, you can view members who have read a specific message in a group channel. The method returns a list of channel members who have read the message by comparing the message's creation time and the channel members' read receipt. The list excludes the current user and the message sender.

Note: Read receipt indicates the timestamp of the latest time when each user has read messages in the channel in Unix milliseconds.

If you want real-time updates on who has read a new message, use the onReadStatusUpdated() event handler for the client app to receive a callback from the Sendbird server whenever a channel member reads a message.

void onReadStatusUpdated(GroupChannel channel) {}

Note: Using the getUnreadMembers() method, you can also view members who haven't read a specific message in a group channel, except the current user and the message sender. In the meantime, you can get information on each channel member's read receipt through the getReadStatus() method.