includeAnnotations property
bool
get
includeAnnotations
Gets or sets a value indicating whether to submit annotations.
Implementation
bool get includeAnnotations => _includeAnnotations;
set
includeAnnotations
(bool value)
Implementation
set includeAnnotations(bool value) {
if (_includeAnnotations != value) {
_includeAnnotations = value;
if (_includeAnnotations) {
_flags.add(PdfSubmitFormFlags.includeAnnotations);
} else {
_flags.remove(PdfSubmitFormFlags.includeAnnotations);
}
}
}