toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> _data = <String, dynamic>{};
  _data["wrap_pipe"] = wrapPipe;
  _data["house_scale"] = houseScale;
  _data["num_floor"] = numFloor;
  _data["have_threshold"] = haveThreshold;
  _data["compare_wall_eps"] = compareWallEps;
  _data["wall_ponums_min_num"] = wallPonumsMinNum;
  _data["cross_distance_threshold"] = crossDistanceThreshold;
  _data["plane_distance_threshold"] = planeDistanceThreshold;
  return _data;
}