deleteMessageByIds method
根据时间删除本地消息。
Param messageIds
指定的消息id列表。
Throws 如果有异常会在这里抛出,包含错误码和错误描述,详见 EMError。
Implementation
Future<void> deleteMessageByIds(List<String> messageIds) async {
Map req = this._toJson();
req['messageIds'] = messageIds;
Map result = await _emConversationChannel.invokeMethod(
ChatMethodKeys.deleteMessageByIds, req);
try {
EMError.hasErrorFromResult(result);
} on EMError catch (e) {
throw e;
}
}