returnUncroppedImage property

bool? returnUncroppedImage

If set to true, an original (uncropped) image will be received, which is sent for recognition.

Implementation

bool? get returnUncroppedImage => _returnUncroppedImage;
void returnUncroppedImage=(bool? val)

Implementation

set returnUncroppedImage(bool? val) {
  _returnUncroppedImage = val;
  _set({"returnUncroppedImage": val});
}