getGroupMessageDeliveredToList static method

  1. @Deprecated('Instead of use Mirrorfly.getGroupMessageDeliveredRecipients()')
Future<String> getGroupMessageDeliveredToList(
  1. String messageId,
  2. String jid
)

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.

Params:

  • messageId: The ID of the message.
  • jid: The JID of the group.

Returns:

  • A Future<String> that completes with the list of recipients.

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");
});

Implementation

@Deprecated('Instead of use Mirrorfly.getGroupMessageDeliveredRecipients()')
static Future<String> getGroupMessageDeliveredToList(
    String messageId, String jid) async {
  return FlyChatFlutterPlatform.instance
      .getGroupMessageDeliveredToList(messageId, jid);
}