jmessage-flutter-plugin icon indicating copy to clipboard operation
jmessage-flutter-plugin copied to clipboard

getHistoryMessages从最新的消息开始获取历史消息【无法获取历史消息】

Open MuZiLee opened this issue 5 years ago • 1 comments

image

如图,我发送消息可以正常发送,但是获取不到getHistoryMessages的画史消息。

MuZiLee avatar Nov 18 '19 15:11 MuZiLee

void getMessages () async { List msgs = await jmessage.getHistoryMessages( type: widget.target, from: 0, limit: 10, isDescend: false ); for (var msg in msgs) { addMessage(msg); } } 我这样写可以

xchao0213 avatar Dec 04 '19 03:12 xchao0213