V2TimGroupApplication.fromJson constructor

V2TimGroupApplication.fromJson(
  1. Map json
)

Implementation

V2TimGroupApplication.fromJson(Map json) {
  json = Utils.formatJson(json);
  groupID = json['groupID'];
  fromUser = json['fromUser'];
  fromUserNickName = json['fromUserNickName'];
  fromUserFaceUrl = json['fromUserFaceUrl'];
  toUser = json['toUser'];
  addTime = json['addTime'];
  requestMsg = json['requestMsg'];
  handledMsg = json['handledMsg'];
  type = json['type'];
  handleStatus = json['handleStatus'];
  handleResult = json['handleResult'];
}