deleteMessagesWithTs method
从本地数据库中删除指定时间段内的消息。
Param startTs
删除消息的起始时间。UNIX 时间戳,单位为毫秒。
Param endTs
删除消息的结束时间。UNIX 时间戳,单位为毫秒。
Throws 如果有异常会在这里抛出,包含错误码和错误描述,详见 EMError。
Implementation
Future<void> deleteMessagesWithTs(int startTs, int endTs) async {
Map req = this._toJson();
req['startTs'] = startTs;
req['endTs'] = endTs;
Map result = await _emConversationChannel.invokeMethod(
ChatMethodKeys.deleteMessagesWithTs, req);
try {
EMError.hasErrorFromResult(result);
} on EMError catch (e) {
throw e;
}
}