Cell.fromJson constructor

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

Implementation

factory Cell.fromJson(Map<String, dynamic> json) {
  return Cell(
    id: json["id"],
    row: json["row"],
    col: json["col"],
    rowSpan: json["row_span"],
    colSpan: json["col_span"],
    label: json["label"],
    xmin: json["xmin"],
    ymin: json["ymin"],
    xmax: json["xmax"],
    ymax: json["ymax"],
    score: json["score"],
    text: json["text"],
    rowLabel: json["row_label"],
    verificationStatus: json["verification_status"],
    status: json["status"],
    failedValidation: json["failed_validation"],
    labelId: json["label_id"],
  );
}