showCaptureButtonDelayFromDetect property

int? showCaptureButtonDelayFromDetect

Allows you to specify a time interval when the Capture button has to be displayed after the document is detected. Don't forget to set the showCaptureButton to true, otherwise, it won't be displayed.

Default: 5.

Implementation

int? get showCaptureButtonDelayFromDetect =>
    _showCaptureButtonDelayFromDetect;
void showCaptureButtonDelayFromDetect=(int? val)

Implementation

set showCaptureButtonDelayFromDetect(int? val) {
  _showCaptureButtonDelayFromDetect = val;
  _set({"showCaptureButtonDelayFromDetect": val});
}