toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final data = Map<String, dynamic>();
  data['appMangerLevel'] = this.appMangerLevel;
  data['userID'] = this.userID;
  data['nickname'] = this.nickname;
  data['faceURL'] = this.faceURL;
  data['ex'] = this.ex;
  data['createTime'] = this.createTime;
  data['remark'] = this.remark;
  data['globalRecvMsgOpt'] = this.globalRecvMsgOpt;
  return data;
}