alreadyCropped property
bool?
get
alreadyCropped
This option can be set to true
if you know for sure that the image you
provide contains already cropped document by its edges. This was designed
to process on the server side images captured and cropped on mobile.
Implementation
bool? get alreadyCropped => _alreadyCropped;
set
alreadyCropped
(bool? val)
Implementation
set alreadyCropped(bool? val) {
_alreadyCropped = val;
_set({"alreadyCropped": val});
}