V2TimTextElem.fromJson constructor
V2TimTextElem.fromJson(
- Map json
Implementation
V2TimTextElem.fromJson(Map json) {
elemType = MessageElemType.V2TIM_ELEM_TYPE_TEXT;
json = Utils.formatJson(json);
text = json['text_elem_content'];
if (json['nextElem'] != null) {
nextElem = Utils.formatJson(json['nextElem']);
}
}