shouldReturnPackageForReprocess property

bool? get 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;
set shouldReturnPackageForReprocess (bool? val)

Implementation

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