writePDF static method
Generates a PDF Document from the scanned document.
Implementation
static Future<File?> writePDF(String path, String fileName,
{bool overwrite = true, pdfPageFormat = PDFPageFormat.fitToPages}) {
return DocutainSdkPlatform.instance
.writePDF(path, fileName, overwrite, pdfPageFormat);
}