getGroupMessageReadByList static method
- @Deprecated('Instead of use Mirrorfly.getGroupMessageSeenRecipients()')
This method fetches the list of recipients who have received the specified group message.
Note that this method is deprecated and it is recommended to use
Mirrorfly.getGroupMessageDeliveredRecipients()
instead.
Usage example:
String messageId = "your_message_id";
String jid = "your_jid";
Mirrorfly.getGroupMessageDeliveredToList(messageId, jid).then((recipientsList) {
// Handle the list of recipients to whom the group message was delivered
print("Group message delivered to: $recipientsList");
});
Params:
messageId
: The ID of the message.jid
: The JID of the group.
Returns:
- A
Future<String>
that completes with the list of recipients.
Deprecated:
- Use
Mirrorfly.getGroupMessageDeliveredRecipients()
instead.
Implementation
@Deprecated('Instead of use Mirrorfly.getGroupMessageSeenRecipients()')
static Future<String> getGroupMessageReadByList(
String messageId, String jid) async {
return FlyChatFlutterPlatform.instance
.getGroupMessageReadByList(messageId, jid);
}