loadMessage method
- String messageId
获取指定 ID 的消息。
优先从内存中加载,如果内存中没有则从数据库中加载,并将其插入到内存中。
Param messageId
消息 ID。
Return 消息实例。
Throws 如果有异常会在这里抛出,包含错误码和错误描述,详见 EMError。
Implementation
Future<EMMessage?> loadMessage(String messageId) async {
Map req = this._toJson();
req['msg_id'] = messageId;
Map result = await _emConversationChannel.invokeMethod(
ChatMethodKeys.loadMsgWithId, req);
try {
EMError.hasErrorFromResult(result);
if (result[ChatMethodKeys.loadMsgWithId] != null) {
return EMMessage.fromJson(result[ChatMethodKeys.loadMsgWithId]);
} else {
return null;
}
} on EMError catch (e) {
throw e;
}
}