pullHistoryById method

Future<NIMResult<List<NIMMessage>>> pullHistoryById(
  1. List<NIMMessageKey> msgKeyList,
  2. bool persist
)

根据消息关键信息批量查询服务端历史消息。 msgKeyList 消息关键信息列表 persist 查询的漫游消息是否同步到本地数据库。

Implementation

Future<NIMResult<List<NIMMessage>>> pullHistoryById(
    List<NIMMessageKey> msgKeyList, bool persist) async {
  throw UnimplementedError('pullHistoryById() is not implemented');
}