BarcodeObject.fromJson constructor
Implementation
factory BarcodeObject.fromJson(Map<String, dynamic> json) => BarcodeObject(
value: json["value"],
rawValue: json["rawValue"],
typeId: json["type"],
cornerPoints: List<OcrPoint>.from((json["cornerPoints"] ?? json["b"] ?? []).map((x) => OcrPoint.fromJson(x))),
);