Graphic.fromJson constructor
Implementation
factory Graphic.fromJson(Map<String, dynamic> json) {
return Graphic(
utils.parseInt(json["width"]),
utils.parseInt(json["height"]),
GShape.listFrom(json["shapes"] ??
GShape.listFrom(json["elements"]) ??
json["content"]),
);
}