expectedPass property

List<int>? expectedPass

This option controls the quality checks that the image should pass in order to be considered a valid input during the scanning process.

Implementation

List<int>? get expectedPass => _expectedPass;
void expectedPass=(List<int>? val)

Implementation

set expectedPass(List<int>? val) {
  _expectedPass = val;
  _set({"expectedPass": val});
}