displayMetadata property

bool? displayMetadata

If it's set to true, the metadata will be displayed over the camera preview during document processing, namely the perspective angle value.

Default: false.

Implementation

bool? get displayMetadata => _displayMetadata;
void displayMetadata=(bool? val)

Implementation

set displayMetadata(bool? val) {
  _displayMetadata = val;
  _set({"displayMetadata": val});
}