OnFailedToProcessBarcode typedef
OnFailedToProcessBarcode =
void Function(dynamic image, Object? e, StackTrace? s)
When any error occurs.
image :
- is
CameraImagewhen theCameraImagewas failed to convert. - is
InputImagewhen theBarcodeScannerwas failed to process anInputImage.e: error object.s: stack trace of this error.
Implementation
typedef OnFailedToProcessBarcode = void Function(
dynamic image,
Object? e,
StackTrace? s,
);