orientation property

DocReaderOrientation? orientation

Allows you to specify an orientation of the camera view controller.

Default: DocReaderOrientation.ALL.

Implementation

DocReaderOrientation? get orientation => _orientation;
void orientation=(DocReaderOrientation? val)

Implementation

set orientation(DocReaderOrientation? val) {
  _orientation = val;
  _set({"orientation": val?.value});
}