parseFile method

Future<PdfDocument> parseFile(
  1. String path
)

Implementation

Future<PdfDocument> parseFile(String path) async {
  final bytes = await File(path).readAsBytes();
  return parseBytes(bytes);
}