Graphic.fromJson constructor

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

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"]),
  );
}