shouldReturnPackageForReprocess property
When set to true
, the rawResults
property of the Results
will contain the encrypted containers of scanning results
that may be used for later reprocessing.
Implementation
bool? get shouldReturnPackageForReprocess => _shouldReturnPackageForReprocess;
Implementation
set shouldReturnPackageForReprocess(bool? val) {
_shouldReturnPackageForReprocess = val;
_setProcessParams({"shouldReturnPackageForReprocess": val}, this);
}