Barcode and Bankcard
Accura Scan’s solution scans and extracts data from Barcodes as well as Bank cards.
Barcode
Method use to start Barcode scanning is
AccuraOcr.startBarcode(config);var config= [barcodeSelected];The example function is shown below
Future<void> startBarcode() async{
var config= barcodeSelected; //Barcode Selected(String)
await AccuraOcr.startBarcode([config]).then((value) => {
setState((){
dynamic result = json.decode(value);
})
});
}Response:
Bankcard
Method use to start Bankcard scanning is
The example function is shown below
Response:
Last updated