renderAnnotations property
Whether annotations (highlights, sticky notes, etc.) are rendered in the
PDF page. Maps to the PDFium FPDF_ANNOT flag.
Implementation
bool get renderAnnotations => _renderAnnotations;
Sets renderAnnotations to value and notifies listeners.
Implementation
set renderAnnotations(bool value) {
if (_renderAnnotations == value) return;
_renderAnnotations = value;
notifyListeners();
}