downloadPdfWeb function

void downloadPdfWeb(
  1. List<int> bytes,
  2. String filename
)

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');
}