hide method
void
hide(
- PdfViewerController pdfViewerController
Temporarily hides all highlights/underlines on the current page.
Implementation
void hide(PdfViewerController pdfViewerController) {
_highlightHistory[_currentPage]?.forEach((action) {
pdfViewerController.removeAnnotation(action.annotation);
});
}