getLocalMessageCount method
获取本地消息数量。
获取指定时间范围内本地数据库中的消息数量。
Param startMs
时间范围的开始时间。
Param endMs
时间范围的结束时间。
Return 指定时间范围内本地数据库中的消息数量。
Throws 如果有异常会在这里抛出,包含错误码和错误描述,详见 EMError。
Implementation
Future<int> getLocalMessageCount({
required int startMs,
required int endMs,
}) async {
Map req = this._toJson();
req.putIfNotNull("startMs", startMs);
req.putIfNotNull("endMs", endMs);
Map result = await _emConversationChannel.invokeMethod(
ChatMethodKeys.conversationGetLocalMessageCount, req);
try {
EMError.hasErrorFromResult(result);
return result[ChatMethodKeys.conversationGetLocalMessageCount];
} on EMError catch (e) {
throw e;
}
}