UPdfViewer constructor

const UPdfViewer({
  1. String? base64Pdf,
  2. Uint8List? bytes,
  3. String? url,
  4. String? filePath,
  5. Key? key,
})

Implementation

const UPdfViewer({this.base64Pdf, this.bytes, this.url, this.filePath, super.key}) : assert(base64Pdf != null || bytes != null || url != null || filePath != null, "Provide one PDF source");