CLPdfViewer constructor

const CLPdfViewer({
  1. Key? key,
  2. required String pdfUrl,
  3. Future<void> onDownload()?,
})

Implementation

const CLPdfViewer({
  super.key,
  required this.pdfUrl,
  this.onDownload,
});