PdfView constructor

const PdfView({
  1. Key? key,
  2. required String path,
  3. Set<Factory<OneSequenceGestureRecognizer>>? gestureRecognizers,
  4. bool gestureNavigationEnabled = false,
})

Creates a new PdfView.

Implementation

const PdfView({
  Key? key,
  required this.path,
  this.gestureRecognizers,
  this.gestureNavigationEnabled = false,
}) : super(key: key);