includeIncrementalUpdates property
bool
get
includeIncrementalUpdates
Gets or sets a value indicating whether to submit form's incremental updates.
Implementation
bool get includeIncrementalUpdates => _includeIncrementalUpdates;
set
includeIncrementalUpdates
(bool value)
Implementation
set includeIncrementalUpdates(bool value) {
if (_includeIncrementalUpdates != value) {
_includeIncrementalUpdates = value;
if (_includeIncrementalUpdates) {
_flags.add(PdfSubmitFormFlags.includeAppendSaves);
} else {
_flags.remove(PdfSubmitFormFlags.includeAppendSaves);
}
}
}