DecodedBarcodesResult Class
The DecodedBarcodesResult class represents the result of a barcode reading process. It provides access to information about the decoded barcodes, the source image, and any errors that occurred during the barcode reading process.
Definition
Assembly: dynamsoft_capture_vision_flutter
class DecodedBarcodesResult extends CapturedResultBase
Properties
| Property | Type | Description |
|---|---|---|
items |
List<BarcodeResultItem>? | A list of BarcodeResultItem, the basic unit representing a single barcode result. |
The following properties are inherited from CapturedResultBase:
| Properties | Types | Description |
|---|---|---|
originalImageHashId |
String | The hash id of the original image. |
rotationTransformMatrix |
Matrix4 | The rotation transformation matrix of the original image relative to the rotated image. |
errorCode |
int | The error code of this result. |
errorMessage |
String | The error message of this result. |
items
A list of BarcodeResultItem, the basic unit representing a single barcode result and its associated info.
List<BarcodeResultItem>? items;