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["allowedTimeBeforeTrack"] = this.allowedTimeBeforeTrack;
  data["allowedDistanceBeforeTrack"] = this.allowedDistanceBeforeTrack;
  data["manualStatus"] = this.manualStatus;
  if (this.userInfo != null) data["userInfo"] = this.userInfo?.toJson();
  if (this.proInfo != null) data["proInfo"] = this.proInfo?.toJson();
  return data;
}