V2TimTextElem.fromJson constructor

V2TimTextElem.fromJson(
  1. Map json
)

Implementation

V2TimTextElem.fromJson(Map json) {
  elemType = MessageElemType.V2TIM_ELEM_TYPE_TEXT;
  json = Utils.formatJson(json);
  text = json['text_elem_content'];
}