toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['gender'] = this.gender;
data['levelIcon'] = this.levelIcon;
data['personalSign'] = this.personalSign;
data['state'] = this.state;
data['userIcon'] = this.userIcon;
data['userId'] = this.userId;
data['userLevel'] = this.userLevel;
data['userName'] = this.userName;
data['atten'] = this.atten;
data['nobilityType'] = this.nobilityType;
return data;
}