toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data["id"] = this.id;
  data["isPro"] = this.isPro;
  data["userId"] = this.userId;
  data["proId"] = this.proId;
  data["uniqueId"] = this.uniqueId;
  data["lastContactDate"] = this.lastContactDate;
  data["phone"] = this.phone;
  data["firstName"] = this.firstName;
  data["lastName"] = this.lastName;
  data["infoName"] = this.infoName;
  data["thumbnail"] = this.thumbnail;
  data["comment"] = this.comment;
  data["arckipel"] = this.arckipel;
  data["userdisplayName"] = this.userDisplayName;
  data["proDisplayname"] = this.proDisplayname;
  data["firebaseId"] = this.firebaseId;
  return data;
}