# RecognizedTextLinesResult

The `RecognizedTextLinesResult` class represents the overall result(s) of a text recognition process. It provides access to information about the recognized text lines, the original image, and any errors that occurred during the recognition process.

## Definition

*Assembly:* dynamsoft_capture_vision_flutter

```dart
class RecognizedTextLinesResult extends CapturedResultBase
```

## Properties

| Property | Types | Description |
| -------- | ----- | ----------- |
| [`getItems`](#getitems) | *List<TextLineResultItem>* | The text line result(s) recognized from the image/frame in an array of [`TextLineResultItem`](/label-recognition/docs/mobile/programming/flutter/api-reference/text-line-result-item.html). |

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

| Property | Types | Description |
| -------- | ----- | ----------- |
| [`originalImageHashId`](/capture-vision/docs/mobile/programming/flutter/api-reference/core/captured-result-base.html#originalimagehashid) | *String* | The hash id of the original image. |
| [`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 of this result. |
| [`errorMessage`](/capture-vision/docs/mobile/programming/flutter/api-reference/core/captured-result-base.html#errormessage) | *String* | The error message of this result. |

### getItems

The text line result(s) recognized from the image/frame in an array of [`TextLineResultItem`](/label-recognition/docs/mobile/programming/flutter/api-reference/text-line-result-item.html).

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