unhide method
void
unhide(
- PdfViewerController pdfViewerController
Restores (unhides) all highlights/underlines on the current page.
Implementation
void unhide(PdfViewerController pdfViewerController) {
_highlightHistory[_currentPage]?.forEach((action) {
pdfViewerController.addAnnotation(action.annotation);
});
}