WallSize.fromJson constructor

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

Implementation

WallSize.fromJson(Map<String, dynamic> json) {
  step = json["step"];
  radius = json["radius"];
  available = json["available"];
  cutHoleEdge = json["cut_hole_edge"];
}