getGroupMessageDeliveredRecipients static method

Future<void> getGroupMessageDeliveredRecipients({
  1. required String messageId,
  2. required String groupJid,
  3. required dynamic flyCallBack(
    1. FlyResponse response
    ),
})

Get Delivered Recipients of a Group message to the Mirrorfly chat platform.

The messageId parameter specifies the unique identifier of the message for which the message you have to get Delivered recipients

Returns: The flyCallBack parameter is a function that will be called upon completion of the operation. It receives a FlyResponse object as a parameter, which contains information about the success or failure of the operation. FlyResponse.data is Json Encoded value of the message Status Details (MessageStatusDetail)

Implementation

static Future<void> getGroupMessageDeliveredRecipients(
    {required String messageId,
    required String groupJid,
    required Function(FlyResponse response) flyCallBack}) {
  return FlyChatFlutterPlatform.instance
      .getGroupMessageDeliveredRecipients(messageId, groupJid, flyCallBack);
}