downloadPdfWeb function
Download PDF file (stub for non-web platforms).
This function is not used on non-web platforms as PDF handling is done through the printing package.
Implementation
void downloadPdfWeb(List<int> bytes, String filename) {
throw UnsupportedError('downloadPdfWeb is only supported on web platform');
}