toJson method

Map<String, dynamic> toJson()

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;
}