perspectiveAngle property

int? get 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;
set perspectiveAngle (int? val)

Implementation

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