V2TimMessageOnlineUrl.fromJson constructor

V2TimMessageOnlineUrl.fromJson(
  1. Map json
)

Implementation

V2TimMessageOnlineUrl.fromJson(Map json) {
  json = Utils.formatJson(json);
  imageElem = json['imageElem'] != null
      ? V2TimImageElem.fromJson(json['imageElem'])
      : null;
  soundElem = json['soundElem'] != null
      ? V2TimSoundElem.fromJson(json['soundElem'])
      : null;
  videoElem = json['videoElem'] != null
      ? V2TimVideoElem.fromJson(json['videoElem'])
      : null;
  fileElem = json['fileElem'] != null
      ? V2TimFileElem.fromJson(json['fileElem'])
      : null;
}