toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['user_id'] = this.userId;
data['name'] = this.name;
data['country_code'] = this.countryCode;
data['telephone'] = this.telephone;
data['email'] = this.email;
return data;
}