noGraphics property

bool? get noGraphics

When enabled no graphic fields will be cropped from document image.

Implementation

bool? get noGraphics => _noGraphics;
set noGraphics (bool? val)

Implementation

set noGraphics(bool? val) {
  _noGraphics = val;
  _set({"noGraphics": val});
}