getGroupMessageSeenRecipients method

Future<void> getGroupMessageSeenRecipients(
  1. String messageId,
  2. String jid,
  3. dynamic callback(
    1. FlyResponse response
    )?
)

This method is used to get the message read users list in a group.

Implementation

Future<void> getGroupMessageSeenRecipients(
    String messageId, String jid, Function(FlyResponse response)? callback) {
  throw UnimplementedError('has not been implemented.');
}