powerPointToPdf method

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

Convert PowerPoint presentation to PDF

file PowerPoint presentation to convert options Conversion options

Implementation

Future<ApiResponse> powerPointToPdf(File file, {ConversionOptions? options}) {
  return convertToPdf(file, ConversionFormat.pptx, options: options);
}