sendMessageReadReceipts method Null safety

Future<V2TimCallback> sendMessageReadReceipts(
  1. {required List<String> messageIDList}
)

Send 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. After the API is called successfully, the session unread will not change, and the message sender will receive the onRecvMessageReadReceipts callback, which will carry the latest read information of the message. Parameters: messageIDList, message ID list Note: web does not support this taboo

Implementation

Future<V2TimCallback> sendMessageReadReceipts({
  required List<String> messageIDList,
}) async {
  return await ImFlutterPlatform.instance.sendMessageReadReceipts(
    messageIDList: messageIDList,
  );
}