BipPdfViewer constructor

const BipPdfViewer({
  1. Key? key,
  2. required String filePath,
  3. String title = 'PDF Viewer',
  4. Color? themeColor,
  5. bool showPrint = true,
  6. bool showThumbnails = true,
})

Implementation

const BipPdfViewer({
  super.key,
  required this.filePath,
  this.title = 'PDF Viewer',
  this.themeColor,
  this.showPrint = true,
  this.showThumbnails = true,
});