DocViewerToolbar constructor

DocViewerToolbar({
  1. required DocViewerController controller,
  2. String? title,
  3. bool showSearch = true,
  4. bool showZoom = true,
  5. bool showPageNav = true,
  6. bool showToc = true,
  7. bool showReadingMode = true,
  8. DartStyle? dartStyle,
  9. String? className,
})

Implementation

DocViewerToolbar({
  required this.controller,
  this.title,
  this.showSearch = true,
  this.showZoom = true,
  this.showPageNav = true,
  this.showToc = true,
  this.showReadingMode = true,
  this.dartStyle,
  this.className,
});