PDFListViewer constructor

PDFListViewer({
  1. Key? key,
  2. required PDFDocument document,
  3. bool preload = false,
  4. double loadingPageHeight = 400,
})

Implementation

PDFListViewer({
  Key? key,
  required this.document,
  this.preload = false,
  double loadingPageHeight = 400,
}) : super(key: key) {
  _loadingPageHeight = loadingPageHeight;
}