decodeImageBuffer method
Decode barcodes from an image buffer.
Implementation
Future<List<Map<dynamic, dynamic>>> decodeImageBuffer(
Uint8List bytes, int width, int height, int stride, int format) async {
return _barcodeManager.decodeImageBuffer(
bytes, width, height, stride, format);
}