timeoutFromFirstDocType property

double? get timeoutFromFirstDocType

Allows you to set the time limit for document recognition (in seconds), beyond which the recognition does not continue regardless of its result. The countdown starts from the moment the document type is recognized. Setting value to 0 means infinity.

Implementation

double? get timeoutFromFirstDocType => _timeoutFromFirstDocType;
set timeoutFromFirstDocType (double? val)

Implementation

set timeoutFromFirstDocType(double? val) {
  _timeoutFromFirstDocType = val;
  _set({"timeoutFromFirstDocType": val});
}