perspectiveAngle property

  1. @Deprecated("since 7.6")
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

@Deprecated("since 7.6")
int? get perspectiveAngle => _perspectiveAngle;
set perspectiveAngle (int? val)

Implementation

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