toJson method
Implementation
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['prdId'] = _prdId;
map['bindWeixinFlag'] = _bindWeixinFlag;
map['weixinUnionId'] = _weixinUnionId;
map['weixinName'] = _weixinName;
map['sex'] = _sex;
map['currentCity'] = _currentCity;
map['userName'] = _userName;
map['accessToken'] = _accessToken;
map['mustangUserNum'] = _mustangUserNum;
map['userId'] = _userId;
map['deviceId'] = _deviceId;
map['winningIdea'] = _winningIdea;
map['aliUserId'] = _aliUserId;
map['tongdunTimeout'] = _tongdunTimeout;
map['currentIp'] = _currentIp;
map['phoneNumber'] = _phoneNumber;
map['headImgUrl'] = _headImgUrl;
map['weixinOpenId'] = _weixinOpenId;
map['newUser'] = _newUser;
map['ctime'] = _ctime;
map['currentTimeStamp'] = _currentTimeStamp;
map['bindAliFlag'] = _bindAliFlag;
return map;
}