shouldReturnPackageForReprocess property

bool? shouldReturnPackageForReprocess

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;
void shouldReturnPackageForReprocess=(bool? val)

Implementation

set shouldReturnPackageForReprocess(bool? val) {
  _shouldReturnPackageForReprocess = val;
  _set({"shouldReturnPackageForReprocess": val});
}