manualCrop property
bool?
get
manualCrop
If set to true
, allows you to manually set the document's bounds
after it is detected.
Implementation
bool? get manualCrop => _manualCrop;
set
manualCrop
(bool? val)
Implementation
set manualCrop(bool? val) {
_manualCrop = val;
_set({"manualCrop": val});
}