# BarcodeResult ## BarcodeResult Creates a BarcodeResult object. ### Parameters ```{list-table} :align: left :class: list-table * - Argument Name - Type - Description * - status - Status - Status (see 4.14) * - result - Result - Result (see 4.15) * - message - String - Message * - array - List - See [SymbologyInfoModel Array](symbology_info.md#symbologyinfomodel) ``` ### Return Value ```{list-table} :align: left :class: list-table * - Type - Description * - BarcodeResult - BarcodeResult object ```` ### Sample Code ```dart Status status = Status.SUCCESS; Result result = Result.CHARACTER_NONE; String message = ""; SymbologyInfoModel symbologyInfoModel = SymbologyInfoModel(Symbology.CHINESE_2_OF_5, true); List list = []; list.add(symbologyInfoModel); BarcodeResult barcodeResult = BarcodeResult(status, result, message, list); ```