factory OcrPoint.fromJson(Map<String, dynamic> json) => OcrPoint( x: (json["x"] ?? json["a"]).toDouble(), y: (json["y"] ?? json["b"]).toDouble(), );