WidthDepth.fromJson constructor

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

Implementation

WidthDepth.fromJson(Map<String, dynamic> json) {
  mode = json["mode"];
  pure = json["pure"];
  step = json["step"];
  depth = json["depth"];
  width = json["width"];
  adjust = json["adjust"];
  height = json["height"] == null ? null : List<num>.from(json["height"]);
  offset = json["offset"];
  available = json["available"];
  lowQuota = json["low_quota"];
  wallSectionAcceptError = json["wall_section.accept_error"];
  wallSectionDeltaIgnore = json["wall_section.delta_ignore"];
}