Prediction.fromJson constructor
Prediction.fromJson(
- Map<String, dynamic> json
)
Implementation
factory Prediction.fromJson(Map<String, dynamic> json) {
return Prediction(
id: json["id"],
label: json["label"],
xmin: json["xmin"],
ymin: json["ymin"],
xmax: json["xmax"],
ymax: json["ymax"],
score: json["score"].toDouble(),
ocrText: json["ocr_text"],
type: json["type"],
status: json["status"],
pageNo: json["page_no"],
labelId: json["label_id"],
cells: json["cells"] == null
? []
: List<Cell>.from(json["cells"]!.map((x) => Cell.fromJson(x))),
);
}