From 1ac04669dc8e6426b23a7930e391c6c26893b9fa Mon Sep 17 00:00:00 2001 From: DMGithubPublisher Date: Wed, 26 Nov 2025 10:37:53 +0800 Subject: [PATCH 1/2] update to internal commit 6e2824ae --- programming/flutter/api-reference/text-line-result-item.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/programming/flutter/api-reference/text-line-result-item.md b/programming/flutter/api-reference/text-line-result-item.md index 632028c..3590fbc 100644 --- a/programming/flutter/api-reference/text-line-result-item.md +++ b/programming/flutter/api-reference/text-line-result-item.md @@ -20,7 +20,7 @@ The `TextLineResultItem` class represents a single text line result item recogni class TextLineResultItem extends CapturedResultItem ``` -*Inheritance:* [CapturedResultItem]({{ site.dcv_android_api }}core/captured-result-item.html) -> TextLineResultItem +*Inheritance:* [CapturedResultItem]({{ site.dcv_flutter_api }}core/captured-result-item.html) -> TextLineResultItem ## Properties @@ -29,7 +29,7 @@ class TextLineResultItem extends CapturedResultItem | [`text`](#text) | *String* | Returns the text content of the text line. | | [`location`](#location) | *Quadrilateral* | Returns the location of the text line in the form of a quadrilateral. | | [`confidence`](#confidence) | *int* | Returns the confidence of the text line recognition result. | -| [`characterResults`](#characterresults) | *List* | Get all the characters in the text line. Each character is represented by a [`CharacterResult`]({{ site.dcv_flutter_api }}core/character-result.html) object. | +| [`characterResults`](#characterresults) | *List* | Get all the characters in the text line. Each character is represented by a [`CharacterResult`]({{ site.dcv_flutter_api }}capture-vision-router/character-result.html) object. | | [`specificationName`](#specificationname) | *String* | Returns the name of the [`TextLineSpecification`]({{site.dcv_parameter_reference}}text-line-specification/) object that generated this `TextLineResultItem`. | | [`rawText`](#rawtext) | *String* | Returns the recognized raw text, excluding any concatenation separators. | @@ -59,7 +59,7 @@ int confidence; ### characterResults -Returns all the characters in the text line. Each character is represented by a [`CharacterResult`]({{ site.dcv_flutter_api }}core/character-result.html) object. +Returns all the characters in the text line. Each character is represented by a [`CharacterResult`]({{ site.dcv_flutter_api }}capture-vision-router/character-result.html) object. ```dart List? characterResults; From 257bc30eb388c1bc034851d52d53f08185c0ab1c Mon Sep 17 00:00:00 2001 From: DMGithubPublisher Date: Wed, 26 Nov 2025 10:44:14 +0800 Subject: [PATCH 2/2] update to internal commit f451f0b9 --- programming/flutter/api-reference/text-line-result-item.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programming/flutter/api-reference/text-line-result-item.md b/programming/flutter/api-reference/text-line-result-item.md index 3590fbc..a937219 100644 --- a/programming/flutter/api-reference/text-line-result-item.md +++ b/programming/flutter/api-reference/text-line-result-item.md @@ -29,7 +29,7 @@ class TextLineResultItem extends CapturedResultItem | [`text`](#text) | *String* | Returns the text content of the text line. | | [`location`](#location) | *Quadrilateral* | Returns the location of the text line in the form of a quadrilateral. | | [`confidence`](#confidence) | *int* | Returns the confidence of the text line recognition result. | -| [`characterResults`](#characterresults) | *List* | Get all the characters in the text line. Each character is represented by a [`CharacterResult`]({{ site.dcv_flutter_api }}capture-vision-router/character-result.html) object. | +| [`characterResults`](#characterresults) | *List* | Get all the characters in the text line. Each character is represented by a [`CharacterResult`]({{ site.dcv_flutter_api }}core/character-result.html) object. | | [`specificationName`](#specificationname) | *String* | Returns the name of the [`TextLineSpecification`]({{site.dcv_parameter_reference}}text-line-specification/) object that generated this `TextLineResultItem`. | | [`rawText`](#rawtext) | *String* | Returns the recognized raw text, excluding any concatenation separators. | @@ -59,7 +59,7 @@ int confidence; ### characterResults -Returns all the characters in the text line. Each character is represented by a [`CharacterResult`]({{ site.dcv_flutter_api }}capture-vision-router/character-result.html) object. +Returns all the characters in the text line. Each character is represented by a [`CharacterResult`]({{ site.dcv_flutter_api }}core/character-result.html) object. ```dart List? characterResults;