GLine.fromJson constructor

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

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