doublePageSpread property

bool? doublePageSpread

If set to true, allows to process up to two pages of the document (so-called "a double-page spread") for one-shot if they are presented on the frame (image).

Implementation

bool? get doublePageSpread => _doublePageSpread;
void doublePageSpread=(bool? val)

Implementation

set doublePageSpread(bool? val) {
  _doublePageSpread = val;
  _set({"doublePageSpread": val});
}