pdfToExcel method

Future<ApiResponse> pdfToExcel(
  1. File file, {
  2. ConversionOptions? options,
})

Convert PDF to Excel spreadsheet

file PDF file to convert options Conversion options

Implementation

Future<ApiResponse> pdfToExcel(File file, {ConversionOptions? options}) {
  return convertPdfTo(file, ConversionFormat.xlsx, options: options);
}