pdfToExcel method
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);
}