multipageProcessing property
If set to true
, processing of more than one page of the document
(if they exist) will be triggered, otherwise, only one page will be processed.
Implementation
bool? get multipageProcessing => _multipageProcessing;
Implementation
set multipageProcessing(bool? val) {
_multipageProcessing = val;
_setProcessParams({"multipageProcessing": val}, this);
}