# 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

```dart
class ParsedResult extends CapturedResultBase
```

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| [`items`](#items) | *List\<ParsedResultItem\>?* | A list of [`ParsedResultItem`](/code-parser/docs/mobile/programming/flutter/api-reference/parsed-result-item.html), the basic unit representing a single parsed result from an encrypted text. |

The following properties are inherited from [`CapturedResultBase`](/capture-vision/docs/mobile/programming/flutter/api-reference/core/captured-result-base.html):

| Property | Type | Description |
| -------- | ---- | ----------- |
| [`originalImageHashId`](/capture-vision/docs/mobile/programming/flutter/api-reference/core/captured-result-base.html#originalimagehashid) | *String* | The hash id of the original image. You can use this ID to get the original image via the `IntermediateResultManager` class. |
| [`rotationTransformMatrix`](/capture-vision/docs/mobile/programming/flutter/api-reference/core/captured-result-base.html#rotationtransformmatrix) |  *Matrix4* | The rotation transformation matrix of the original image relative to the rotated image. |
| [`errorCode`](/capture-vision/docs/mobile/programming/flutter/api-reference/core/captured-result-base.html#errorcode) | *int* | The error code associated with the capture result. |
| [`errorMessage`](/capture-vision/docs/mobile/programming/flutter/api-reference/core/captured-result-base.html#errormessage) | *String* | The error message associated with the capture result. |

### items

A list of [`ParsedResultItem`](/code-parser/docs/mobile/programming/flutter/api-reference/parsed-result-item.html), the basic unit representing a single parsed result from an encrypted text.

```dart
List<ParsedResultItem>? items;
```
