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["propertyId"] = this.propertyId;
  data["userIdPresentor"] = this.userIdPresentor;
  data["userIdVisitor"] = this.userIdVisitor;
  data["meetingDatetime"] = this.meetingDatetime;
  data["status"] = this.status;
  data["homelidoPropertyInfo"] = this.homelidoPropertyInfo?.toJson();
  data["proInfo"] = this.proInfo?.toJson();
  data["userInfo"] = this.userInfo?.toJson();
  return data;
}