StationParamData.fromJson constructor

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

Implementation

StationParamData.fromJson(Map<String, dynamic> json) {
  wall = json["wall"] == null ? null : Wall.fromJson(json["wall"]);
  corner = json["corner"] == null ? null : Corner.fromJson(json["corner"]);
  height = json["height"] == null ? null : Height.fromJson(json["height"]);
  builder =
      json["builder"] == null ? null : Builder.fromJson(json["builder"]);
  railing =
      json["railing"] == null ? null : Railing.fromJson(json["railing"]);
  planeObj =
      json["planeObj"] == null ? null : PlaneObj.fromJson(json["planeObj"]);
  baseInfo =
      json["base_info"] == null ? null : BaseInfo.fromJson(json["base_info"]);
  holeInfo =
      json["hole_info"] == null ? null : HoleInfo.fromJson(json["hole_info"]);
  roomSize =
      json["room_size"] == null ? null : RoomSize.fromJson(json["room_size"]);
  wallSize =
      json["wall_size"] == null ? null : WallSize.fromJson(json["wall_size"]);
  drawHouse = json["draw_house"] == null
      ? null
      : DrawHouse.fromJson(json["draw_house"]);
  holeFrame = json["hole_frame"] == null
      ? null
      : HoleFrame.fromJson(json["hole_frame"]);
  holeRuler = json["hole_ruler"] == null
      ? null
      : HoleRuler.fromJson(json["hole_ruler"]);
  rulerWall = json["ruler.wall"] == null
      ? null
      : RulerWall.fromJson(json["ruler.wall"]);
  squareness = json["squareness"] == null
      ? null
      : Squareness.fromJson(json["squareness"]);
  rulerPlane = json["ruler.plane"] == null
      ? null
      : RulerPlane.fromJson(json["ruler.plane"]);
  splitJonum = json["split_jonum"] == null
      ? null
      : SplitJonum.fromJson(json["split_jonum"]);
  wallFiller = json["wall_filler"] == null
      ? null
      : WallFiller.fromJson(json["wall_filler"]);
  widthDepth = json["width_depth"] == null
      ? null
      : WidthDepth.fromJson(json["width_depth"]);
  cornerRidge = json["corner_ridge"] == null
      ? null
      : CornerRidge.fromJson(json["corner_ridge"]);
  cornerRuler = json["corner_ruler"] == null
      ? null
      : CornerRuler.fromJson(json["corner_ruler"]);
  floorHeight = json["floor_height"] == null
      ? null
      : FloorHeight.fromJson(json["floor_height"]);
  kwargsFloor = json["kwargs_floor"] == null
      ? null
      : KwargsFloor.fromJson(json["kwargs_floor"]);
  markingLine = json["marking_line"] == null
      ? null
      : MarkingLine.fromJson(json["marking_line"]);
  marklineDet = json["markline_det"] == null
      ? null
      : MarklineDet.fromJson(json["markline_det"]);
  paramSetting = json["param_setting"] == null
      ? null
      : ParamSetting.fromJson(json["param_setting"]);
  tileComposer = json["tile_composer"] == null
      ? null
      : TileComposer.fromJson(json["tile_composer"]);
  floorGradient = json["floor_gradient"] == null
      ? null
      : FloorGradient.fromJson(json["floor_gradient"]);
  levelnessRoof = json["levelness.roof"] == null
      ? null
      : LevelnessRoof.fromJson(json["levelness.roof"]);
  microFlatness = json["micro_flatness"] == null
      ? null
      : MicroFlatness.fromJson(json["micro_flatness"]);
  wallDiagonals = json["wall_diagonals"] == null
      ? null
      : WallDiagonals.fromJson(json["wall_diagonals"]);
  wireboxHeight = json["wirebox_height"] == null
      ? null
      : WireboxHeight.fromJson(json["wirebox_height"]);
  houseDiagonals = json["house_diagonals"] == null
      ? null
      : HouseDiagonals.fromJson(json["house_diagonals"]);
  levelnessFloor = json["levelness.floor"] == null
      ? null
      : LevelnessFloor.fromJson(json["levelness.floor"]);
  wallTrowelling = json["wall_trowelling"] == null
      ? null
      : WallTrowelling.fromJson(json["wall_trowelling"]);
  polygonSearcher = json["polygon_searcher"] == null
      ? null
      : PolygonSearcher.fromJson(json["polygon_searcher"]);
  rulerWallWall2 = json["ruler.wall.wall_2"] == null
      ? null
      : RulerWallWall2.fromJson(json["ruler.wall.wall_2"]);
  repetitionalRuler = json["repetitional_ruler"] == null
      ? null
      : RepetitionalRuler.fromJson(json["repetitional_ruler"]);
  windowBottomEdge = json["window_bottom_edge"] == null
      ? null
      : WindowBottomEdge.fromJson(json["window_bottom_edge"]);
  floorTileComposer = json["floor_tile_composer"] == null
      ? null
      : FloorTileComposer.fromJson(json["floor_tile_composer"]);
  rulerWallSelection = json["ruler.wall_selection"] == null
      ? null
      : RulerWallSelection.fromJson(json["ruler.wall_selection"]);
  similarFailedDetect = json["similar_failed_detect"] == null
      ? null
      : SimilarFailedDetect.fromJson(json["similar_failed_detect"]);
  windowsTopLevelness = json["windows_top_levelness"] == null
      ? null
      : WindowsTopLevelness.fromJson(json["windows_top_levelness"]);
  woodenFloorComposer = json["wooden_floor_composer"] == null
      ? null
      : WoodenFloorComposer.fromJson(json["wooden_floor_composer"]);
  ceilingAluminumGusset = json["ceiling_aluminum_gusset"] == null
      ? null
      : CeilingAluminumGusset.fromJson(json["ceiling_aluminum_gusset"]);
  rulerPlaneRoofSmooth1 = json["ruler.plane.roof_smooth_1"] == null
      ? null
      : RulerPlaneRoofSmooth1.fromJson(json["ruler.plane.roof_smooth_1"]);
}