GRectangle.fromJson constructor

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

Implementation

factory GRectangle.fromJson(Map<String, dynamic> json) => GRectangle(
      utils.parseInt(json["x"]),
      utils.parseInt(json["y"]),
      utils.parseInt(json["width"]),
      utils.parseInt(json["height"]),
      color: PColor.from(json["color"]),
      strokeSize: utils.tryParseInt(json["strokeSize"]),
      backgroundColor: PColor.from(json["backgroundColor"]),
    );