decodePdf method

Future<List<PdfBarcode>> decodePdf({
  1. String? filePath,
  2. Uint8List? pdfBytes,
  3. required DecoderConfig config,
})

Platform interface method to decode barcodes from either filePath or pdfBytes.

Implementation

Future<List<PdfBarcode>> decodePdf({
  String? filePath,
  Uint8List? pdfBytes,
  required DecoderConfig config,
}) {
  throw UnimplementedError('decodePdf() has not been implemented.');
}