GPanel.fromJson constructor
Implementation
factory GPanel.fromJson(Map<String, dynamic> json) {
return GPanel(
utils.parseInt(json["x"]),
utils.parseInt(json["y"]),
utils.parseInt(json["width"]),
utils.parseInt(json["height"]),
GShape.listFrom(json["elements"] ?? json["shapes"] ?? json["content"]),
backgroundColor: PColor.from(json["backgroundColor"]),
);
}