doublePageSpread property

bool? get 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;
set doublePageSpread (bool? val)

Implementation

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