V2TimRecvGroupTextMessage.fromJson constructor
- Map json
Implementation
V2TimRecvGroupTextMessage.fromJson(Map json) {
json = Utils.formatJson(json);
msgID = json['msgID'] ?? '';
sender = V2TimUserInfo.fromJson(json['sender'] ?? {});
groupID = json['groupID'] ?? '';
text = json['customData'];
}