GLine.fromJson constructor
Implementation
factory GLine.fromJson(Map<String, dynamic> json) => GLine(
utils.parseInt(json["x1"]),
utils.parseInt(json["y1"]),
utils.parseInt(json["x2"]),
utils.parseInt(json["y2"]),
size: utils.parseInt(json["size"]),
color: PColor.from(json["color"]),
);