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