readBarcodes method

  1. @override
List<Code> readBarcodes(
  1. Uint8List bytes, {
  2. required int width,
  3. required int height,
  4. DecodeParams? params,
})
override

Reads barcodes from Uint8List image bytes

Implementation

@override
List<Code> readBarcodes(
  Uint8List bytes, {
  required int width,
  required int height,
  DecodeParams? params,
}) =>
    zxingReadBarcodes(bytes, width: width, height: height, params: params);