PdfReaderToolbar constructor

const PdfReaderToolbar({
  1. Key? key,
  2. required PdfReaderActions actions,
  3. Color? color,
  4. bool showSearch = true,
  5. bool showNotes = true,
  6. bool showHighlights = true,
  7. bool showBookmarks = true,
  8. bool showJumpToPage = true,
  9. bool showAppearance = true,
  10. bool showReadingSettings = true,
})

Implementation

const PdfReaderToolbar({
  super.key,
  required this.actions,
  this.color,
  this.showSearch = true,
  this.showNotes = true,
  this.showHighlights = true,
  this.showBookmarks = true,
  this.showJumpToPage = true,
  this.showAppearance = true,
  this.showReadingSettings = true,
});