ParsedResult Class
The ParsedResult class represents the result of a code parsing process. It provides access to the individual parsed items resulting from a document or an encrypted text.
Definition
Assembly: dynamsoft_capture_vision_flutter
class ParsedResult extends CapturedResultBase
Properties
| Property | Type | Description |
|---|---|---|
items |
List<ParsedResultItem>? | A list of ParsedResultItem, the basic unit representing a single parsed result from an encrypted text. |
The following properties are inherited from CapturedResultBase:
| Property | Type | Description |
|---|---|---|
originalImageHashId |
String | The hash id of the original image. You can use this ID to get the original image via the IntermediateResultManager class. |
rotationTransformMatrix |
Matrix4 | The rotation transformation matrix of the original image relative to the rotated image. |
errorCode |
int | The error code associated with the capture result. |
errorMessage |
String | The error message associated with the capture result. |
items
A list of ParsedResultItem, the basic unit representing a single parsed result from an encrypted text.
List<ParsedResultItem>? items;