This commit is contained in:
hrxiang
2021-07-20 18:07:55 +08:00
parent 9f81d2227e
commit 40f758eb63
2 changed files with 8 additions and 6 deletions

View File

@@ -117,14 +117,14 @@ class MessageManager {
Future<Message> createTextAtMessage({
required String text,
required List<String> atUserList,
required List<String> atUidList,
}) {
return _channel
.invokeMethod(
'createTextAtMessage',
_buildParam({
'text': text,
'atUserList': atUserList,
'atUserList': atUidList,
}),
)
.then((value) => _toObj(value));