renderAnnotations property

bool get renderAnnotations

Whether annotations (highlights, sticky notes, etc.) are rendered in the PDF page. Maps to the PDFium FPDF_ANNOT flag.

Implementation

bool get renderAnnotations => _renderAnnotations;
set renderAnnotations (bool value)

Sets renderAnnotations to value and notifies listeners.

Implementation

set renderAnnotations(bool value) {
  if (_renderAnnotations == value) return;
  _renderAnnotations = value;
  notifyListeners();
}