angleThreshold property

int? angleThreshold

This parameter sets threshold for Image QA check of the presented document perspective angle in degrees. If actual document perspective angle is above this threshold, check will fail.

Implementation

int? get angleThreshold => _angleThreshold;
void angleThreshold=(int? val)

Implementation

set angleThreshold(int? val) {
  _angleThreshold = val;
  _set({"angleThreshold": val});
}