refreshTeamMessageReceipt method Null safety
- List<
NIMMessage> messageList
The sender of a group message batch refreshes the message's read count and unread count. The operation will not trigger an asynchronous callback. If the read count or unread count updates, listen to onTeamMessageReceipt to get corresponding notifications.
Implementation
Future<NIMResult<void>> refreshTeamMessageReceipt(
List<NIMMessage> messageList) async {
return _platform.refreshTeamMessageReceipt(messageList);
}