Squareness.fromJson constructor
Implementation
Squareness.fromJson(Map<String, dynamic> json) {
pure = json["pure"];
quota = json["quota"];
height = json["height"] == null ? null : List<num>.from(json["height"]);
quota2 = json["quota2"];
available = json["available"];
minLength = json["minLength"];
acceptError = json["acceptError"];
deltaIgnore = json["deltaIgnore"];
maxDistance = json["maxDistance"];
}