$UserInfoProfileToJson function
Implementation
Map<String, dynamic> $UserInfoProfileToJson(UserInfoProfile entity) {
final Map<String, dynamic> data = <String, dynamic>{};
data['userId'] = entity.userId;
data['userType'] = entity.userType;
data['nickname'] = entity.nickname;
data['avatarImgId'] = entity.avatarImgId;
data['avatarUrl'] = entity.avatarUrl;
data['backgroundImgId'] = entity.backgroundImgId;
data['backgroundUrl'] = entity.backgroundUrl;
data['signature'] = entity.signature;
data['createTime'] = entity.createTime;
data['userName'] = entity.userName;
data['accountType'] = entity.accountType;
data['shortUserName'] = entity.shortUserName;
data['birthday'] = entity.birthday;
data['authority'] = entity.authority;
data['gender'] = entity.gender;
data['accountStatus'] = entity.accountStatus;
data['province'] = entity.province;
data['city'] = entity.city;
data['authStatus'] = entity.authStatus;
data['description'] = entity.description;
data['detailDescription'] = entity.detailDescription;
data['defaultAvatar'] = entity.defaultAvatar;
data['expertTags'] = entity.expertTags;
data['experts'] = entity.experts;
data['djStatus'] = entity.djStatus;
data['locationStatus'] = entity.locationStatus;
data['vipType'] = entity.vipType;
data['followed'] = entity.followed;
data['mutual'] = entity.mutual;
data['authenticated'] = entity.authenticated;
data['lastLoginTime'] = entity.lastLoginTime;
data['lastLoginIP'] = entity.lastLoginIP;
data['remarkName'] = entity.remarkName;
data['viptypeVersion'] = entity.viptypeVersion;
data['authenticationTypes'] = entity.authenticationTypes;
data['avatarDetail'] = entity.avatarDetail;
data['anchor'] = entity.anchor;
return data;
}