Builder.fromJson constructor

Builder.fromJson(
  1. Map<String, dynamic> json
)

Implementation

Builder.fromJson(Map<String, dynamic> json) {
  eps = json["eps"];
  type = json["type"];
  buildBy = json["build_by"];
  maxDist = json["max_dist"];
  mergeEps = json["merge_eps"];
  mergeSin = json["merge_sin"];
  minPonums = json["min_ponums"];
  voxelSize = json["voxel_size"];
  connRadius = json["conn_radius"];
  wallPonums = json["wall_ponums"];
  singlePlane = json["single_plane"];
  toFindOutline = json["to_find_outline"];
  downSampleSize = json["down_sample_size"];
  thresholdErrorLow = json["threshold_error_low"];
  thresholdErrorHigh = json["threshold_error_high"];
}