clearSessionUnreadCount method

Future<NIMResult<List<NIMSessionInfo>>> clearSessionUnreadCount(
  1. List<NIMSessionInfo> sessionInfoList
)

清除未读数

sessionInfoList 请求列表

返回不能成功处理的请求列表

Implementation

Future<NIMResult<List<NIMSessionInfo>>> clearSessionUnreadCount(
  List<NIMSessionInfo> sessionInfoList,
) {
  return _platform.clearSessionUnreadCount(sessionInfoList);
}