com.tencent.imv2/interface/parser/i_group_msg_parser library
Classes
- IGroupMsgParser
-
群聊消息解析
IGroupMsgModel? parserGroup(V2TimMessage v2timMessage) {
IGroupMsgModel iGroupMsgModel = IGroupMsgModel();
iGroupMsgModel.v2timMessage = v2timMessage;
var result = v2timMessage.customElem?.data;
if (result != null) {
//解析出type和data
Map jsonDate = json.decode(result);
iGroupMsgModel.action = jsonDate
"type"
.toString(); iGroupMsgModel.data = jsonDate"data"
; } return iGroupMsgModel; }