pdfToHtml method

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

Convert PDF to HTML

file PDF file to convert options Conversion options

Implementation

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