getGroupMessageDeliveredRecipients static method
Future<void>
getGroupMessageDeliveredRecipients({
- required String messageId,
- required String groupJid,
- required dynamic flyCallBack(
- 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);
}