perspectiveAngle property

int? perspectiveAngle

Allows you to set the maximum value of the deviation of the corners of the document from the value of 90 degrees.

Implementation

int? get perspectiveAngle => _perspectiveAngle;
void perspectiveAngle=(int? val)

Implementation

set perspectiveAngle(int? val) {
  _perspectiveAngle = val;
  _set({"perspectiveAngle": val});
}