getMessageReadReceipts method Null safety
Get message read receipt Version 3.9.3 and above is supported This interface only supports Group messages temporarily. The message IDs in messageIDList must be in the same Group session.
Implementation
Future<V2TimValueCallback<List<V2TimMessageReceipt>>> getMessageReadReceipts({
required List<String> messageIDList,
}) async {
return await ImFlutterPlatform.instance.getMessageReadReceipts(
messageIDList: messageIDList,
);
}