wordToPdf method
Convert Word document to PDF
file
Word document to convert
options
Conversion options
Implementation
Future<ApiResponse> wordToPdf(File file, {ConversionOptions? options}) {
return convertToPdf(file, ConversionFormat.docx, options: options);
}